manage-client 3.3.139 → 3.3.140
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 +1 -1
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +4 -5
- package/src/filiale/gehua/config/exportConfig.js +1084 -1084
- package/src/filiale/gehua/config/tableConfig.js +56 -56
- package/src/filiale/liaoyuan/exportConfig.js +1 -1
- package/src/filiale/lixianV3/ChangeMeterQuery.vue +21 -0
- package/src/filiale/lixianV3/config/exportConfig.js +1 -1
- package/src/filiale/qianneng/BusinessManage.vue +185 -185
- package/src/filiale/qianneng/WebmeterQuery.vue +67 -67
- package/src/filiale/wenxi/CardHandplanQuery.vue +4 -0
- package/src/filiale/wenxi/HandplanQuery.vue +4 -0
- package/src/filiale/wenxi/config/exportConfig.js +11 -1
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<div class="col-sm-2 form-group">
|
|
32
32
|
<label class="font_normal_body">客户地址</label>
|
|
33
33
|
<input class="input_search"
|
|
34
|
-
condition="
|
|
34
|
+
condition="f_address like '%{}%'"
|
|
35
35
|
placeholder='客户地址'
|
|
36
36
|
style="width:60%"
|
|
37
37
|
type="text"
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
<div class="col-sm-2 form-group">
|
|
159
159
|
<label class="font_normal_body">操 作 人</label>
|
|
160
160
|
<v-select :options='$parent.$parent.operators' :value.sync="model.f_operator" close-on-select
|
|
161
|
-
condition="
|
|
161
|
+
condition="f_operator='{}'"
|
|
162
162
|
placeholder='操作人'
|
|
163
163
|
style="width:60%"
|
|
164
164
|
v-model="model.f_operator"></v-select>
|
|
@@ -419,9 +419,8 @@
|
|
|
419
419
|
this.criteriaShow = !this.criteriaShow
|
|
420
420
|
},
|
|
421
421
|
getorg(condition,obj) {
|
|
422
|
-
this.orgcondition = condition.replace('f_orgid','
|
|
423
|
-
this.orgcondition = this.orgcondition.replace('f_depid','
|
|
424
|
-
this.orgcondition = this.orgcondition.replace('f_operatorid','i.f_operatorid')
|
|
422
|
+
this.orgcondition = condition.replace('f_orgid','f_orgid')
|
|
423
|
+
this.orgcondition = this.orgcondition.replace('f_depid','f_depid')
|
|
425
424
|
this.orgname = obj.orgnames[0]
|
|
426
425
|
},
|
|
427
426
|
initQueryParam () {
|