manage-client 4.0.3-2 → 4.0.4
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/package.json
CHANGED
|
@@ -130,11 +130,11 @@
|
|
|
130
130
|
}
|
|
131
131
|
if (!this.datamanage.callSumByUnit) {
|
|
132
132
|
load3.load('POST', 'api/af-revenue/sql/getCallSumByUnit', {data: {}}, {rejectMsg: null, resolveMsg: null}).then((ret) => {
|
|
133
|
-
this.items = []// ret.data
|
|
133
|
+
// this.items = []// ret.data
|
|
134
134
|
this.items = ret.data
|
|
135
|
-
this.items.push(ret.data.filter((item) => item.name === "滨河")[0])
|
|
136
|
-
this.items.push(ret.data.filter((item) => item.name === "乌达")[0])
|
|
137
|
-
this.items.push(ret.data.filter((item) => item.name === "海勃湾")[0])
|
|
135
|
+
// this.items.push(ret.data.filter((item) => item.name === "滨河")[0])
|
|
136
|
+
// this.items.push(ret.data.filter((item) => item.name === "乌达")[0])
|
|
137
|
+
// this.items.push(ret.data.filter((item) => item.name === "海勃湾")[0])
|
|
138
138
|
})
|
|
139
139
|
} else {
|
|
140
140
|
this.items = this.datamanage.callSumByUnit
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<span class="normal-font" >三年未入户总数</span>
|
|
21
21
|
</div>
|
|
22
22
|
<div class="flex-inline col-sm-6 auto" >
|
|
23
|
-
<span class="normal-font"
|
|
23
|
+
<span class="normal-font" >通气户数</span>
|
|
24
24
|
</div>
|
|
25
25
|
</div>
|
|
26
26
|
<!--<div style="width: 60%">-->
|
|
@@ -114,13 +114,13 @@ export default {
|
|
|
114
114
|
console.log('穿过来的值')
|
|
115
115
|
this.changeshow = !this.changeshow
|
|
116
116
|
console.log(this.changeshow)
|
|
117
|
-
if(!this.
|
|
117
|
+
if(!this.datamanage.checkData){
|
|
118
118
|
let http = new HttpResetClass()
|
|
119
119
|
await http.load('post', '/api/af-revenue/sql/getCheckSum', {data:{}}, {rejectMsg: null, resolveMsg: null}).then((res)=>{
|
|
120
120
|
this.checkData = res.data[0]
|
|
121
121
|
})
|
|
122
122
|
} else {
|
|
123
|
-
this.checkData = this.
|
|
123
|
+
this.checkData = this.datamanage.checkData
|
|
124
124
|
|
|
125
125
|
}
|
|
126
126
|
|
|
@@ -135,6 +135,28 @@
|
|
|
135
135
|
close-on-select condition="f_user_state ='{}'">
|
|
136
136
|
</v-select>
|
|
137
137
|
</div>
|
|
138
|
+
<div class="col-sm-2 form-group">
|
|
139
|
+
<label class="font_normal_body">开始时间</label>
|
|
140
|
+
<datepicker style="width:60%" id="startdate" placeholder="开始时间"
|
|
141
|
+
v-model="model.startDate"
|
|
142
|
+
:value.sync="model.startDate"
|
|
143
|
+
:disabled-days-of-Week="[]"
|
|
144
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
145
|
+
|
|
146
|
+
:show-reset-button="reset">
|
|
147
|
+
</datepicker>
|
|
148
|
+
</div>
|
|
149
|
+
<div class="col-sm-2 form-group">
|
|
150
|
+
<label class="font_normal_body">结束时间</label>
|
|
151
|
+
<datepicker style="width:60%" id="enddate" placeholder="结束日期"
|
|
152
|
+
v-model="model.endDate"
|
|
153
|
+
:value.sync="model.endDate"
|
|
154
|
+
:disabled-days-of-Week="[]"
|
|
155
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
156
|
+
|
|
157
|
+
:show-reset-button="reset">
|
|
158
|
+
</datepicker>
|
|
159
|
+
</div>
|
|
138
160
|
<div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
|
|
139
161
|
<label class="font_normal_body">失联天数 </label>
|
|
140
162
|
<div class="row">
|