manage-client 3.3.111 → 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
|
@@ -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
|
}
|