sale-client 4.2.131 → 4.2.132
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/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/package.json +1 -1
- package/src/components/revenue/changeInsurance/InsuranceChargesDetails.vue +1 -19
- package/src/filiale/yangchun/BlackList/BlackList.vue +3 -3
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -151,17 +151,7 @@
|
|
|
151
151
|
v-model="model.f_expiration_end_date" style="width: 55%">
|
|
152
152
|
</datepicker>
|
|
153
153
|
</div>
|
|
154
|
-
|
|
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>
|
|
154
|
+
|
|
165
155
|
</div>
|
|
166
156
|
</div>
|
|
167
157
|
|
|
@@ -184,9 +174,6 @@
|
|
|
184
174
|
<th>
|
|
185
175
|
<nobr>身份证号</nobr>
|
|
186
176
|
</th>
|
|
187
|
-
<th>
|
|
188
|
-
<nobr>客户状态</nobr>
|
|
189
|
-
</th>
|
|
190
177
|
<th>
|
|
191
178
|
<nobr>电话</nobr>
|
|
192
179
|
</th>
|
|
@@ -257,9 +244,6 @@
|
|
|
257
244
|
<td style="text-align: center;">
|
|
258
245
|
<nobr>{{row.f_idnumber}}</nobr>
|
|
259
246
|
</td>
|
|
260
|
-
<td style="text-align: center;">
|
|
261
|
-
<nobr>{{row.f_user_state}}</nobr>
|
|
262
|
-
</td>
|
|
263
247
|
<td style="text-align: center;">
|
|
264
248
|
<nobr>{{row.f_user_phone}}</nobr>
|
|
265
249
|
</td>
|
|
@@ -365,7 +349,6 @@
|
|
|
365
349
|
f_state: '',
|
|
366
350
|
state: this.$appdata.getParam('保险状态') ? this.$appdata.getParam('保险状态') : [],
|
|
367
351
|
payment: this.$appdata.getParam('收费方式') ? this.$appdata.getParam('收费方式') : [],
|
|
368
|
-
userstate: this.$appdata.getParam('客户状态') ? this.$appdata.getParam('客户状态') : [],
|
|
369
352
|
f_insurance_type: '',
|
|
370
353
|
insuranceType: this.$appdata.getParam('险种') ? this.$appdata.getParam('险种') : [],
|
|
371
354
|
orgCondtionStr: '',
|
|
@@ -383,7 +366,6 @@
|
|
|
383
366
|
'f_user_name': '投保人',
|
|
384
367
|
'f_address': '客户地址',
|
|
385
368
|
'f_idnumber': '身份证号',
|
|
386
|
-
'f_user_state': '客户状态',
|
|
387
369
|
'f_user_phone': '电话',
|
|
388
370
|
'f_fee_type': '费用类型',
|
|
389
371
|
'f_buy_date': '购买日期',
|
|
@@ -212,9 +212,9 @@
|
|
|
212
212
|
self.model.f_address = res.data[0].f_address
|
|
213
213
|
self.model.f_user_phone = res.data[0].f_user_phone
|
|
214
214
|
self.model.version = res.data[0].version
|
|
215
|
-
self.model.f_limit_value = res.data[0].f_limit_value
|
|
216
|
-
self.model.f_limit_times = res.data[0].f_limit_times
|
|
217
|
-
self.model.f_limit_amount = res.data[0].f_limit_amount
|
|
215
|
+
self.model.f_limit_value = res.data[0].f_limit_value ? res.data[0].f_limit_value : 20
|
|
216
|
+
self.model.f_limit_times = res.data[0].f_limit_times ? res.data[0].f_limit_times : 99999
|
|
217
|
+
self.model.f_limit_amount = res.data[0].f_limit_amount ? res.data[0].f_limit_amount : 20
|
|
218
218
|
self.model.f_black_state = res.data[0].f_black_state
|
|
219
219
|
if (res.data[0].f_black_state == '移出拉黑审核' || res.data[0].f_black_state == '已拉黑') {
|
|
220
220
|
self.model.id = res.data[0].id2
|