diff --git a/package-lock.json b/package-lock.json index 44d9b6fc6..d583891fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6408,12 +6408,14 @@ "balanced-match": { "version": "1.0.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, "dev": true, + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -6428,17 +6430,20 @@ "code-point-at": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "concat-map": { "version": "0.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "console-control-strings": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "core-util-is": { "version": "1.0.2", @@ -6555,7 +6560,8 @@ "inherits": { "version": "2.0.3", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "ini": { "version": "1.3.5", @@ -6567,6 +6573,7 @@ "version": "1.0.0", "bundled": true, "dev": true, + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -6581,6 +6588,7 @@ "version": "3.0.4", "bundled": true, "dev": true, + "optional": true, "requires": { "brace-expansion": "^1.1.7" } @@ -6588,12 +6596,14 @@ "minimist": { "version": "0.0.8", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "minipass": { "version": "2.3.5", "bundled": true, "dev": true, + "optional": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -6612,6 +6622,7 @@ "version": "0.5.1", "bundled": true, "dev": true, + "optional": true, "requires": { "minimist": "0.0.8" } @@ -6692,7 +6703,8 @@ "number-is-nan": { "version": "1.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "object-assign": { "version": "4.1.1", @@ -6704,6 +6716,7 @@ "version": "1.4.0", "bundled": true, "dev": true, + "optional": true, "requires": { "wrappy": "1" } @@ -6825,6 +6838,7 @@ "version": "1.0.2", "bundled": true, "dev": true, + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", diff --git a/src/assets/js/utils/data-dictionary.js b/src/assets/js/utils/data-dictionary.js index 67f43d5ad..d0b1756ea 100644 --- a/src/assets/js/utils/data-dictionary.js +++ b/src/assets/js/utils/data-dictionary.js @@ -268,13 +268,13 @@ export default { //代理人证件类型 agentIdType: [ { id: 0, text: '居民身份证' }, - { id: 1, text: '户口本' }, - { id: 2, text: '出生证' }, - { id: 3, text: '外国人永久居留身份证' }, - { id: 4, text: '外国人护照' }, - { id: 5, text: '港澳居民来往内地通行证' }, - { id: 6, text: '台湾居民来往大陆通行证' }, - { id: 7, text: '其他' } + { id: 1, text: '户口本', disabled: true }, + { id: 2, text: '出生证', disabled: true }, + { id: 3, text: '外国人永久居留身份证', disabled: true }, + { id: 4, text: '外国人护照', disabled: true }, + { id: 5, text: '港澳居民来往内地通行证', disabled: true }, + { id: 6, text: '台湾居民来往大陆通行证', disabled: true }, + { id: 7, text: '其他', disabled: true } ], //出生证明 -- 未改动 birthType: [ diff --git a/src/views/ebiz/customer/customerList.vue b/src/views/ebiz/customer/customerList.vue index 1d8bb0f87..1ed5ce673 100644 --- a/src/views/ebiz/customer/customerList.vue +++ b/src/views/ebiz/customer/customerList.vue @@ -74,7 +74,7 @@
- 重置 + 重置 确定
@@ -106,8 +106,8 @@ export default { data() { return { searchVal: '', - show1: false, - show2: false, + show1: true, + show2: true, active1: 0, active2: 0, isFlag: false, diff --git a/src/views/ebiz/product/HomeProduct.vue b/src/views/ebiz/product/HomeProduct.vue index 12a6fad4f..7380ead4e 100644 --- a/src/views/ebiz/product/HomeProduct.vue +++ b/src/views/ebiz/product/HomeProduct.vue @@ -24,16 +24,16 @@ -->
-
-

产品中心

+
+

产品中心

更多
- +
- +
diff --git a/src/views/ebiz/product/ProductList.vue b/src/views/ebiz/product/ProductList.vue index 881a6eb39..354500af9 100644 --- a/src/views/ebiz/product/ProductList.vue +++ b/src/views/ebiz/product/ProductList.vue @@ -120,10 +120,11 @@ export default { console.log(res) if (res.result == 0) { this.risks = res.categorys - this.risks[0].content.push({ - name:"全部", - code:'' - }) + // 写死添加全部 + // this.risks[0].content.push({ + // name:"全部", + // code:'' + // }) // this.label = res.categorys[0].label } },