diff --git a/src/crud/user/portfolio.js b/src/crud/user/portfolio.js new file mode 100644 index 0000000..4671747 --- /dev/null +++ b/src/crud/user/portfolio.js @@ -0,0 +1,83 @@ +export const tableOption = { + searchMenuSpan: 6, + columnBtn: false, + border: true, + // selection: true, + index: false, + indexLabel: '序号', + stripe: true, + menuAlign: 'center', + menuWidth: 350, + align: 'center', + refreshBtn: true, + searchSize: 'mini', + addBtn: false, + editBtn: false, + delBtn: false, + viewBtn: false, + props: { + label: 'label', + value: 'value' + }, + column: [ + { + label: '档案ID', + prop: 'portfolioId', + search: false + }, + { + label: '会员ID', + prop: 'userId', + search: true + }, + { + label: '姓名', + prop: 'name', + search: true + }, + { + label: '出生日期', + prop: 'birthDate', + search: false + }, + { + label: '性别', + prop: 'gender', + search: true + }, + { + label: '民族', + prop: 'ethnicity', + search: false + }, + { + label: '身份证号码', + prop: 'idCardNumber', + search: true + }, + { + label: '联系电话', + prop: 'phoneNumber', + search: true + }, + { + label: '档案状态', + prop: 'portfolioStatus', + search: true, + slot: true, + type: 'select', + dicData: [ + { + label: '待审核', + value: 0 + }, { + label: '审核通过', + value: 1 + }, { + label: '审核未通过', + value: -1 + } + ] + } + ] +} diff --git a/src/views/common/login/index.vue b/src/views/common/login/index.vue index 4e9a745..93bfcc2 100644 --- a/src/views/common/login/index.vue +++ b/src/views/common/login/index.vue @@ -44,7 +44,7 @@
- Copyright © 2019 广州市蓝海创新科技有限公司 + Copyright © 2023 上海蕊鑫信息科技有限公司
+ + + + +
+ 无 +
+
+ + + + + + + 禁用 + + + 正常 + + + +
+ +
+ + + diff --git a/src/views/modules/user/userPorefolio/index.vue b/src/views/modules/user/userPorefolio/index.vue new file mode 100644 index 0000000..52f805c --- /dev/null +++ b/src/views/modules/user/userPorefolio/index.vue @@ -0,0 +1,130 @@ + + +