sale-client 4.2.130 → 4.2.131
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
|
@@ -151,7 +151,17 @@
|
|
|
151
151
|
v-model="model.f_expiration_end_date" style="width: 55%">
|
|
152
152
|
</datepicker>
|
|
153
153
|
</div>
|
|
154
|
-
|
|
154
|
+
<div class="col-sm-2 form-group">
|
|
155
|
+
<label class="font_normal_body" for="f_state">客户状态</label>
|
|
156
|
+
<v-select id="f_user_state"
|
|
157
|
+
v-model="model.f_user_state"
|
|
158
|
+
placeholder='请选择'
|
|
159
|
+
condition="f_user_state ='{}'"
|
|
160
|
+
:value.sync="model.f_user_state"
|
|
161
|
+
:options='$parent.$parent.userstate'
|
|
162
|
+
close-on-select clear-button>
|
|
163
|
+
</v-select>
|
|
164
|
+
</div>
|
|
155
165
|
</div>
|
|
156
166
|
</div>
|
|
157
167
|
|
|
@@ -174,6 +184,9 @@
|
|
|
174
184
|
<th>
|
|
175
185
|
<nobr>身份证号</nobr>
|
|
176
186
|
</th>
|
|
187
|
+
<th>
|
|
188
|
+
<nobr>客户状态</nobr>
|
|
189
|
+
</th>
|
|
177
190
|
<th>
|
|
178
191
|
<nobr>电话</nobr>
|
|
179
192
|
</th>
|
|
@@ -244,6 +257,9 @@
|
|
|
244
257
|
<td style="text-align: center;">
|
|
245
258
|
<nobr>{{row.f_idnumber}}</nobr>
|
|
246
259
|
</td>
|
|
260
|
+
<td style="text-align: center;">
|
|
261
|
+
<nobr>{{row.f_user_state}}</nobr>
|
|
262
|
+
</td>
|
|
247
263
|
<td style="text-align: center;">
|
|
248
264
|
<nobr>{{row.f_user_phone}}</nobr>
|
|
249
265
|
</td>
|
|
@@ -349,6 +365,7 @@
|
|
|
349
365
|
f_state: '',
|
|
350
366
|
state: this.$appdata.getParam('保险状态') ? this.$appdata.getParam('保险状态') : [],
|
|
351
367
|
payment: this.$appdata.getParam('收费方式') ? this.$appdata.getParam('收费方式') : [],
|
|
368
|
+
userstate: this.$appdata.getParam('客户状态') ? this.$appdata.getParam('客户状态') : [],
|
|
352
369
|
f_insurance_type: '',
|
|
353
370
|
insuranceType: this.$appdata.getParam('险种') ? this.$appdata.getParam('险种') : [],
|
|
354
371
|
orgCondtionStr: '',
|
|
@@ -366,6 +383,7 @@
|
|
|
366
383
|
'f_user_name': '投保人',
|
|
367
384
|
'f_address': '客户地址',
|
|
368
385
|
'f_idnumber': '身份证号',
|
|
386
|
+
'f_user_state': '客户状态',
|
|
369
387
|
'f_user_phone': '电话',
|
|
370
388
|
'f_fee_type': '费用类型',
|
|
371
389
|
'f_buy_date': '购买日期',
|