manage-client 3.3.110 → 3.3.112
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
|
@@ -345,6 +345,9 @@
|
|
|
345
345
|
<nobr>收费编号</nobr>
|
|
346
346
|
</th>
|
|
347
347
|
<th>
|
|
348
|
+
<nobr>用户档案备注</nobr>
|
|
349
|
+
</th>
|
|
350
|
+
<th>
|
|
348
351
|
<!-- <nobr>客户编号</nobr>-->
|
|
349
352
|
<data-order field="f_userinfo_code" name="客户编号"
|
|
350
353
|
:order.sync="$parent.$parent.$parent.orderFields.f_userinfo_code"></data-order>
|
|
@@ -405,9 +408,6 @@
|
|
|
405
408
|
<data-order field="f_operate_date" name="收费日期"
|
|
406
409
|
:order.sync="$parent.$parent.$parent.orderFields.f_operate_date"></data-order>
|
|
407
410
|
</th>
|
|
408
|
-
<th>
|
|
409
|
-
<nobr>用户档案备注</nobr>
|
|
410
|
-
</th>
|
|
411
411
|
<th>
|
|
412
412
|
<nobr>优惠金额</nobr>
|
|
413
413
|
</th>
|
|
@@ -561,6 +561,9 @@
|
|
|
561
561
|
<td style="text-align: center;">
|
|
562
562
|
<nobr>{{row.id}}</nobr>
|
|
563
563
|
</td>
|
|
564
|
+
<td style="text-align: center;">
|
|
565
|
+
<nobr>{{row.f_user_comments}}</nobr>
|
|
566
|
+
</td>
|
|
564
567
|
<td style="text-align: center;"><nobr>
|
|
565
568
|
<nobr>{{row.f_userinfo_code}}</nobr>
|
|
566
569
|
</nobr> </td>
|
|
@@ -619,9 +622,6 @@
|
|
|
619
622
|
<td style="text-align: center;">
|
|
620
623
|
<nobr>{{row.f_operate_date}}</nobr>
|
|
621
624
|
</td>
|
|
622
|
-
<td style="text-align: center;">
|
|
623
|
-
<nobr>{{row.f_user_comments}}</nobr>
|
|
624
|
-
</td>
|
|
625
625
|
<td style="text-align: center;">
|
|
626
626
|
<nobr>{{row.f_privilege_money}}</nobr>
|
|
627
627
|
</td>
|
|
@@ -129,6 +129,18 @@
|
|
|
129
129
|
|
|
130
130
|
</v-select>
|
|
131
131
|
</div>
|
|
132
|
+
<div class="col-sm-2 form-group">
|
|
133
|
+
<label class="font_normal_body">用户状态</label>
|
|
134
|
+
<v-select
|
|
135
|
+
placeholder='用户状态'
|
|
136
|
+
value-single
|
|
137
|
+
style="width:60%"
|
|
138
|
+
:value.sync="model.f_user_state"
|
|
139
|
+
v-model="model.f_user_state"
|
|
140
|
+
:options='$parent.$parent.userstate'
|
|
141
|
+
close-on-select condition="f_user_state ='{}'">
|
|
142
|
+
</v-select>
|
|
143
|
+
</div>
|
|
132
144
|
</div>
|
|
133
145
|
</div>
|
|
134
146
|
</criteria>
|
|
@@ -552,6 +564,7 @@
|
|
|
552
564
|
|
|
553
565
|
let readySomething = async function (self) {
|
|
554
566
|
self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
|
|
567
|
+
self.$refs.paged.$refs.cri.model.f_user_state='正常'
|
|
555
568
|
}
|
|
556
569
|
|
|
557
570
|
export default {
|
|
@@ -946,6 +959,9 @@
|
|
|
946
959
|
},
|
|
947
960
|
addressstate() {
|
|
948
961
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('地址状态')]
|
|
962
|
+
},
|
|
963
|
+
userstate() {
|
|
964
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户状态')]
|
|
949
965
|
}
|
|
950
966
|
}
|
|
951
967
|
}
|
|
@@ -109,6 +109,18 @@
|
|
|
109
109
|
close-on-select>
|
|
110
110
|
</v-select>
|
|
111
111
|
</div>
|
|
112
|
+
<div class="col-sm-2 form-group">
|
|
113
|
+
<label class="font_normal_body">用户状态</label>
|
|
114
|
+
<v-select
|
|
115
|
+
placeholder='用户状态'
|
|
116
|
+
value-single
|
|
117
|
+
style="width:60%"
|
|
118
|
+
:value.sync="model.f_user_state"
|
|
119
|
+
v-model="model.f_user_state"
|
|
120
|
+
:options='$parent.$parent.userstate'
|
|
121
|
+
close-on-select condition="f_user_state ='{}'">
|
|
122
|
+
</v-select>
|
|
123
|
+
</div>
|
|
112
124
|
</div>
|
|
113
125
|
</div>
|
|
114
126
|
</criteria>
|
|
@@ -569,6 +581,7 @@
|
|
|
569
581
|
|
|
570
582
|
let readySomething = async function (self) {
|
|
571
583
|
self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
|
|
584
|
+
self.$refs.paged.$refs.cri.model.f_user_state='正常'
|
|
572
585
|
|
|
573
586
|
}
|
|
574
587
|
|
|
@@ -965,6 +978,9 @@
|
|
|
965
978
|
},
|
|
966
979
|
addressstate() {
|
|
967
980
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('地址状态')]
|
|
981
|
+
},
|
|
982
|
+
userstate() {
|
|
983
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户状态')]
|
|
968
984
|
}
|
|
969
985
|
}
|
|
970
986
|
}
|