diff --git a/src/page/main/config/preference/index.vue b/src/page/main/config/preference/index.vue index 441c6ce62fa5ce97cca59e2eaf49e0d0b2b6d53e..5113e0010390a2dfbd74a973f0b70ed690ff11d3 100644 --- a/src/page/main/config/preference/index.vue +++ b/src/page/main/config/preference/index.vue @@ -28,7 +28,10 @@ - + - +
@@ -91,14 +97,19 @@
- + @@ -229,7 +240,9 @@ const state = reactive({ }, //授权表单校验规则 authorizeRules: { - license_inform_day: [{ type: "number", min: 0, max: 90, message: "请输入0~90的整数", trigger: "blur" }], + license_inform_day: [ + { type: "number", min: 0, max: 90, message: "请输入0~90的整数", trigger: "blur" }, + ], }, //安全相关信息表单 @@ -439,16 +452,19 @@ const confirm = () => { } .right_container { position: relative; - width: calc(100% - 256px); + width: calc(100% - 250px); + min-width: 852px; height: 100%; padding: 32px 0 68px 24px; + margin-left: 16px; .authorizeForm, .secureForm, .registerForm { :deep() .el-form-item { margin-bottom: 24px; - width: 750px; + width: 54%; + min-width: 580px; font-size: 14px; .el-form-item__label, .el-radio__label { @@ -473,6 +489,9 @@ const confirm = () => { flex-shrink: 0; margin-right: 56px; } + .el-form-item:nth-of-type(2) { + min-width: auto; + } } } @@ -487,11 +506,16 @@ const confirm = () => { color: var(--el-text-color-primary); .el-form-item { margin: 0px 8px; + min-width: auto; &:nth-of-type(1), &:nth-of-type(3) { + flex: 0; + min-width: 110px; width: 120px; } &:nth-of-type(2) { + flex: 0; + min-width: 140px; width: 150px; } } diff --git a/src/page/main/develop/systemApproval/approval/index.vue b/src/page/main/develop/systemApproval/approval/index.vue index 3f6862ba2909a372cbce8766916754b287aaf0b8..a32e0803e9dd49bfc48272ef9bffd080a640a8d6 100644 --- a/src/page/main/develop/systemApproval/approval/index.vue +++ b/src/page/main/develop/systemApproval/approval/index.vue @@ -2,55 +2,57 @@
- - - - - -
-
-
- 平台运营者审批 - 待审批 -
-
- 申请时间: - {{ instanceData.approveBasicInfo[5].value }} + + +
+
+
+ 平台运营者审批 + 待审批 +
+
+ 申请时间: + {{ instanceData.approveBasicInfo[5].value }} +
+ + + + + + + + + + 通过 + 驳回 + + + + + +
- - - - - - - - - - 通过 - 驳回 - - - - - -
取消 @@ -162,7 +164,9 @@ const getApproveInfo = () => { }); }; //取消 -const cancel = () => {}; +const cancel = () => { + router.push("/develop/systemApproval"); +}; //保存 const save = () => { approveFormRef.value.validate((val) => { @@ -187,7 +191,14 @@ const save = () => {