Browse Source

ad

newStyle
douzhuo 1 year ago
parent
commit
8ad8bcddcf
2 changed files with 22 additions and 10 deletions
  1. +20
    -8
      src/page/check/chose.vue
  2. +2
    -2
      vue.config.js

+ 20
- 8
src/page/check/chose.vue View File

@@ -148,11 +148,16 @@
</div> </div>
<div class="text-2"> <div class="text-2">
服务状态: 服务状态:
<span
style="font-size: 12px"
:style="item.residueTime > 0 ? 'color:green;' : 'color:red;'"
>{{ item.residueTime > 0 ? "服务中" : "已过期" }}</span
>
<template v-if="item.lockFlag == 0">
<span
style="font-size: 12px"
:style="item.residueTime > 0 ? 'color:green;' : 'color:red;'"
>{{ item.residueTime > 0 ? "服务中" : "已过期" }}</span
>
</template>
<template v-else>
<span style="font-size: 12px" :style="'color:red;'">已禁用</span>
</template>
</div> </div>
<div class="text-3"> <div class="text-3">
{{ (item.provinceName || "-") + "-" + (item.cityName || "-") }} {{ (item.provinceName || "-") + "-" + (item.cityName || "-") }}
@@ -161,8 +166,15 @@
</div> </div>
</div> </div>


<div style="margin: 0 auto;width: 1100px;display: flex;justify-content: flex-end;">
<el-pagination
<div
style="
margin: 0 auto;
width: 1100px;
display: flex;
justify-content: flex-end;
"
>
<el-pagination
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
:current-page="currentPage" :current-page="currentPage"
@@ -371,7 +383,7 @@ export default {
} }
this.$router.push({ path: "/wel" }); this.$router.push({ path: "/wel" });
localStorage.setItem("allClose", true); localStorage.setItem("allClose", true);
this.$db.deleteDB('EquipmentStateFiltter')
this.$db.deleteDB("EquipmentStateFiltter");
}, },
addLoginCount(houseId) { addLoginCount(houseId) {
this.$api.api this.$api.api


+ 2
- 2
vue.config.js View File

@@ -3,10 +3,10 @@
* https://cli.vuejs.org/zh/config/ * https://cli.vuejs.org/zh/config/
*/ */
// const url = 'http://192.168.31.160:9999' //长龙 // const url = 'http://192.168.31.160:9999' //长龙
const url = 'http://192.168.31.85:9999' // 胜浩
// const url = 'http://192.168.31.85:9999' // 胜浩
// const url = 'http://127.0.0.1:9999' // 本地 // const url = 'http://127.0.0.1:9999' // 本地


// const url = 'http://39.97.244.65:9999' // 测试服务器
const url = 'http://39.97.244.65:9999' // 测试服务器


// const url = 'http://62.234.122.43:9999' //正式服务器1 // const url = 'http://62.234.122.43:9999' //正式服务器1
// const url = 'https://www.aihxz.com' // 正式域名 // const url = 'https://www.aihxz.com' // 正式域名


Loading…
Cancel
Save