diff --git a/.env.staging b/.env.staging index 5677c52..a55410a 100644 --- a/.env.staging +++ b/.env.staging @@ -4,6 +4,6 @@ NODE_ENV = production ENV = 'staging' # base api -VUE_APP_BASE_API=http://suzhoukeji-test.ali251.langye.net/ -VUE_APP_UPLOAD_API=http://suzhoukeji-test.ali251.langye.net/api/admin/upload-file +VUE_APP_BASE_API=https://suzhoukeji-test.ali251.langye.net +VUE_APP_UPLOAD_API=https://suzhoukeji-test.ali251.langye.net/api/admin/upload-file diff --git a/src/mixin/formMixin.js b/src/mixin/formMixin.js index 21f2f77..a1bc551 100644 --- a/src/mixin/formMixin.js +++ b/src/mixin/formMixin.js @@ -306,6 +306,7 @@ export default { belong_user: 1, belong_user_table: 'company_name', sort: 0, + span: 2 }, { name: '职务', field: 'company_position', @@ -346,6 +347,7 @@ export default { is_open: false, belong_user_table: 'type', sort: 0, + span: 2 }, { name: '企业性质', field: 'company_type', @@ -358,6 +360,7 @@ export default { is_open: false, // 控制开启关闭的 参数不做保存 belong_user_table: 'company_type', sort: 0, + span: 2 }, { name: '融资情况', field: 'company_fund', @@ -368,6 +371,7 @@ export default { belong_user: 1, belong_user_table: 'company_fund', sort: 0, + span: 2 }, { name: '所在区域', field: 'company_area', @@ -380,17 +384,6 @@ export default { is_open: false, belong_user_table: 'company_area', sort: 0, - }, { - name: '公司地址', - field: 'company_address', - rule: '', - edit_input: "text", - help: '请填写公司地址', - need_fill: 0, - belong_user: 1, - is_open: false, - belong_user_table: 'company_address', - sort: 0, }, { name: '所属行业', field: 'company_industry', @@ -403,6 +396,18 @@ export default { is_open: false, belong_user_table: 'company_industry', sort: 0, + }, { + name: '公司地址', + field: 'company_address', + rule: '', + edit_input: "text", + help: '请填写公司地址', + need_fill: 0, + belong_user: 1, + is_open: false, + belong_user_table: 'company_address', + sort: 0, + span: 2 }, { name: '产品', field: 'company_product', @@ -413,16 +418,18 @@ export default { belong_user: 1, belong_user_table: 'company_product', sort: 0, + span: 2 }, { name: '毕业院校', field: 'school', rule: '', edit_input: "text", - help: '请输入产品', + help: '请输入毕业院校', need_fill: 0, belong_user: 1, belong_user_table: 'school', sort: 0, + span: 2 }, { name: '专业', field: 'speciality', @@ -457,13 +464,81 @@ export default { }, { name: '邮箱', field: 'email', - rule: '', + rule: 'email', edit_input: "text", help: '请输入邮箱', need_fill: 0, belong_user: 1, belong_user_table: 'email', sort: 0, + }, { + name: '销售额/亿', + field: 'sales_volume', + rule: '', + edit_input: "text", + help: '请输入销售额/亿', + need_fill: 0, + belong_user: 1, + belong_user_table: 'sales_volume', + sort: 0, + }, { + name: '估值', + field: 'valuation', + rule: '', + edit_input: "text", + help: '请输入估值', + need_fill: 0, + belong_user: 1, + belong_user_table: 'valuation', + sort: 0, + }, { + name: '市值', + field: 'market_value', + rule: '', + edit_input: "text", + help: '请输入市值', + need_fill: 0, + belong_user: 1, + belong_user_table: 'market_value', + sort: 0, + }, { + name: '是否为元禾投资企业', + field: 'is_yuanhe', + rule: '', + edit_input: "text", + help: '请选择', + need_fill: 0, + belong_user: 1, + select_item: [{ + key: '是', + value: '是' + }, { + key: '否', + value: '否' + }], + belong_user_table: 'is_yuanhe', + sort: 0, + }], + sexList: [{ + key: '男', + value: '男' + }, { + key: '女', + value: '女' + }], + shareList: [{ + key: '有', + value: '有' + }, { + key: '无', + value: '无' + }], + yuanheList:[{ + key: '是', + value: '是' + }, { + key: '否', + value: '否' }], formSelect: { // company_position: [], diff --git a/src/mixin/selectMixin.js b/src/mixin/selectMixin.js index b2cbe8e..fb32c77 100644 --- a/src/mixin/selectMixin.js +++ b/src/mixin/selectMixin.js @@ -42,6 +42,18 @@ export default { id: 3, value: '备选', type: 'danger' + }, { + id: 4, + value: '已取消', + type: 'info' + }, { + id: 5, + value: '主动放弃', + type: 'danger' + }, { + id: 6, + value: '黑名单', + type: 'warning' }], fee_status_list: [{ id: 0, @@ -166,7 +178,7 @@ export default { value: '全部' }, { id: 1, - value: '正常', + value: '出勤', type: 'success' }, { id: 0, diff --git a/src/views/book/appointment.vue b/src/views/book/appointment.vue index d8944ec..8a92e40 100644 --- a/src/views/book/appointment.vue +++ b/src/views/book/appointment.vue @@ -98,6 +98,11 @@ label: '场地名称', align: 'left', width: 120, + },{ + prop: 'real_name', + label: '小程序展示名称', + align: 'left', + width: 120, },{ prop: 'appointment_type.name', label: '场地类型', diff --git a/src/views/book/components/addAppointment.vue b/src/views/book/components/addAppointment.vue index 1f5e6dd..11ea7c2 100644 --- a/src/views/book/components/addAppointment.vue +++ b/src/views/book/components/addAppointment.vue @@ -28,10 +28,21 @@ *场地名称:
- +
+ + +