apply-clients 4.1.77 → 4.1.78
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
|
@@ -694,26 +694,25 @@
|
|
|
694
694
|
</div>
|
|
695
695
|
</div>
|
|
696
696
|
<div class="form-group col-sm-6">
|
|
697
|
-
<label class="col-sm-4 control-label"
|
|
697
|
+
<label class="col-sm-4 control-label">用户类型:</label>
|
|
698
698
|
<div class="col-sm-7">
|
|
699
699
|
<input-select
|
|
700
700
|
class="select select_list"
|
|
701
|
-
:value.sync="
|
|
702
|
-
v-model="userinfo.
|
|
703
|
-
:options="
|
|
704
|
-
:disable="$parent.$parent.mark === 1 || userinfo.f_user_state === '正常'
|
|
701
|
+
:value.sync="userinfo.f_user_nature"
|
|
702
|
+
v-model="userinfo.f_user_nature"
|
|
703
|
+
:options="getUserType"
|
|
704
|
+
:disable="$parent.$parent.mark === 1 || userinfo.f_user_state === '正常'"
|
|
705
705
|
:valueSingle="true"></input-select>
|
|
706
706
|
</div>
|
|
707
707
|
</div>
|
|
708
708
|
<div class="form-group col-sm-6">
|
|
709
|
-
<label class="col-sm-4 control-label"
|
|
709
|
+
<label class="col-sm-4 control-label">证件类型:</label>
|
|
710
710
|
<div class="col-sm-7">
|
|
711
711
|
<input-select
|
|
712
712
|
class="select select_list"
|
|
713
|
-
:value.sync="userinfo.
|
|
714
|
-
v-model="userinfo.
|
|
715
|
-
:options="
|
|
716
|
-
:disable="$parent.$parent.mark === 1 || userinfo.f_user_state === '正常'"
|
|
713
|
+
:value.sync="userinfo.f_credentials"
|
|
714
|
+
v-model="userinfo.f_credentials"
|
|
715
|
+
:options="credentialsList"
|
|
717
716
|
:valueSingle="true"></input-select>
|
|
718
717
|
</div>
|
|
719
718
|
</div>
|
|
@@ -1349,7 +1348,7 @@ export default {
|
|
|
1349
1348
|
rejectMsg: null
|
|
1350
1349
|
})
|
|
1351
1350
|
this.$showMessage("删除成功")
|
|
1352
|
-
this.selectdata = res.data
|
|
1351
|
+
// this.selectdata = res.data
|
|
1353
1352
|
} catch (e) {
|
|
1354
1353
|
this.$showAlert(e.data, 'danger', 3000)
|
|
1355
1354
|
}
|
|
@@ -1376,7 +1375,7 @@ export default {
|
|
|
1376
1375
|
this.$showAlert(e.data, 'danger', 3000)
|
|
1377
1376
|
}
|
|
1378
1377
|
this.search()
|
|
1379
|
-
|
|
1378
|
+
this.$dispatch('breakControl', this.selectdata)
|
|
1380
1379
|
},
|
|
1381
1380
|
async unqualcheck(row) {
|
|
1382
1381
|
if (isEmpty(this.cv.f_void_remarks)) {
|