safecheck-client 3.0.39-79 → 3.0.39-80
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "safecheck-client",
|
|
3
3
|
"//": "主分支版本别乱升,测试包的版本直接发包(建议使用1.XX.XX-XXX格式作为测试包,不要频繁升级第三位版本号),别提交版本号。切了分支切记把主分支版本升了,保证主分支始终是最高版本!!!!!",
|
|
4
|
-
"version": "3.0.39-
|
|
4
|
+
"version": "3.0.39-80",
|
|
5
5
|
"description": "安检模块 前端组件",
|
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
|
7
7
|
"license": "ISC",
|
|
@@ -41,6 +41,14 @@
|
|
|
41
41
|
<label class="righttxt">建档日期:</label><input type="text" class="form-control rightipt"
|
|
42
42
|
v-model="userinfo.baseinfo.base.f_createfile_date" readonly/>
|
|
43
43
|
</div>
|
|
44
|
+
<div class="row auto" style="margin: 5px 0">
|
|
45
|
+
<label class="righttxt">用户标签:</label>
|
|
46
|
+
<v-select :value.sync="userinfo.baseinfo.base.f_user_nature" class="input-font" style="margin-left: 5%;"
|
|
47
|
+
:width="'60%'"
|
|
48
|
+
v-model="userinfo.baseinfo.base.f_user_nature"
|
|
49
|
+
:options='user_natures' placeholder='请选择用户标签' close-on-select clear-button value-single
|
|
50
|
+
></v-select>
|
|
51
|
+
</div>
|
|
44
52
|
<!-- <div class="row auto" style="margin: 5px 0">
|
|
45
53
|
<label class="righttxt">开户日期:</label><input type="text" class="form-control rightipt" v-model="userinfo.baseinfo.base.f_open_date" readonly />
|
|
46
54
|
</div>-->
|
|
@@ -449,6 +457,7 @@
|
|
|
449
457
|
boxOptions: [],
|
|
450
458
|
showBox: false,
|
|
451
459
|
directOptions: [{label: '是', value: '是'}, {label: '否', value: '否'}],
|
|
460
|
+
user_natures: this.$appdata.getParam('用户标签'),
|
|
452
461
|
deviceBrandOption: {},
|
|
453
462
|
isNeedAudit: this.$appdata.getSingleValue('信息变更是否需要审核') == 'false' ? false : true
|
|
454
463
|
}
|
|
@@ -627,6 +636,7 @@
|
|
|
627
636
|
userinfoms.f_idnumber = this.userinfo.baseinfo.base.f_idnumber
|
|
628
637
|
userinfoms.f_rent_name = this.userinfo.baseinfo.base.f_rent_name
|
|
629
638
|
userinfoms.f_zuhu_phone = this.userinfo.baseinfo.base.f_zuhu_phone
|
|
639
|
+
userinfoms.f_user_nature = this.userinfo.baseinfo.base.f_user_nature
|
|
630
640
|
userinfoms.f_operator_record = Vue.user.name
|
|
631
641
|
userinfoms.f_operatorid_record = Vue.user.id
|
|
632
642
|
userinfoms.f_remark = this.userinfo.baseinfo.base.f_remark
|
|
@@ -702,6 +712,7 @@
|
|
|
702
712
|
userinfoms.f_idnumber = this.userinfo.baseinfo.base.f_idnumber
|
|
703
713
|
userinfoms.f_rent_name = this.userinfo.baseinfo.base.f_rent_name
|
|
704
714
|
userinfoms.f_zuhu_phone = this.userinfo.baseinfo.base.f_zuhu_phone
|
|
715
|
+
userinfoms.f_user_nature = this.userinfo.baseinfo.base.f_user_nature
|
|
705
716
|
userinfoms.f_operator_record = Vue.user.name
|
|
706
717
|
userinfoms.f_operatorid_record = Vue.user.id
|
|
707
718
|
userinfoms.f_remark = this.userinfo.baseinfo.base.f_remark
|