sale-client 3.5.221 → 3.5.223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dev-server.js +1 -1
- package/package.json +1 -1
- package/src/components/revenue/base/leftview/otherinfo.vue +2 -2
- package/src/filiale/huayin/base/otherinfo.vue +2 -2
- package/src/filiale/rizhao/otherinfo.vue +2 -2
- package/src/filiale/tongchuan/base/otherinfo.vue +2 -2
- package/src/filiale/wenxi/IOTMeterCenter.vue +754 -755
- package/src/filiale/wenxi/UserDeviceInfoTest.vue +3 -3
package/build/dev-server.js
CHANGED
|
@@ -4,7 +4,7 @@ var path = require('path')
|
|
|
4
4
|
var webpackDevServer = require('webpack-dev-server')
|
|
5
5
|
var compiler = webpack(config)
|
|
6
6
|
// 自己改了这里不要提交 来回覆盖挺麻烦的
|
|
7
|
-
const [localUrl, serverRul] = ['http://
|
|
7
|
+
const [localUrl, serverRul] = ['http://192.168.50.4:8400', 'http://192.168.50.4:8400']
|
|
8
8
|
const port = 8089
|
|
9
9
|
|
|
10
10
|
// eslint-disable-next-line new-cap
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex" style="height: 90%;overflow-y: scroll">
|
|
3
|
-
<mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
-
<stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
|
|
3
|
+
<mix-price-info :data="data" v-if="data.f_meter_type && data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
+
<stairinfo :data="data" v-if="data.f_meter_type && data.f_price_type === '阶梯气价'"></stairinfo>
|
|
5
5
|
<bill-message @setstate="setstate" :state="state" :data="data"></bill-message>
|
|
6
6
|
<valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>
|
|
7
7
|
<safe-check :data="data"></safe-check>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex" style="height: 90%;overflow-y: scroll">
|
|
3
|
-
<mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
-
<stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
|
|
3
|
+
<mix-price-info :data="data" v-if="data.f_meter_type && data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
+
<stairinfo :data="data" v-if="data.f_meter_type && data.f_price_type === '阶梯气价'"></stairinfo>
|
|
5
5
|
<safe-check :data="data"></safe-check>
|
|
6
6
|
<bill-message @setstate="setstate" :state="state" :data="data"></bill-message>
|
|
7
7
|
<valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex" style="height: 90%;overflow-y: scroll">
|
|
3
|
-
<mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
-
<stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
|
|
3
|
+
<mix-price-info :data="data" v-if="data.f_meter_type && data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
+
<stairinfo :data="data" v-if="data.f_meter_type && data.f_price_type === '阶梯气价'"></stairinfo>
|
|
5
5
|
<valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>
|
|
6
6
|
<safe-check :data="data"></safe-check>
|
|
7
7
|
<service-repair :data="data" v-if="name==='维修情况查询'"></service-repair>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex" style="overflow-y: scroll">
|
|
3
|
-
<mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
-
<stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
|
|
3
|
+
<mix-price-info :data="data" v-if="data.f_meter_type && data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
+
<stairinfo :data="data" v-if="data.f_meter_type && data.f_price_type === '阶梯气价'"></stairinfo>
|
|
5
5
|
<bill-message @setstate="setstate" :state="state" :data="data"></bill-message>
|
|
6
6
|
<valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>
|
|
7
7
|
<safe-check :data="data"></safe-check>
|