关闭窗口
@@ -37,8 +37,8 @@
@@ -121,6 +154,20 @@ const handleSubmit = () => {
width: 100%;
}
+.info-content {
+ display: block;
+ background-color: #FAFBFF;
+ margin: 20px;
+
+ font-family: PingFangSC, PingFang SC;
+ font-weight: 400;
+ font-size: 16px;
+ color: #333333;
+ line-height: 32px;
+ text-align: left;
+ font-style: normal;
+}
+
.el-upload__inner {
display: flex;
justify-content: center;
@@ -132,7 +179,7 @@ $publicColor: #162582;
$publicHeight: 35px;
.steps {
- width: 80%;
+ width: 100%;
margin: auto 0;
height: $publicHeight;
@@ -147,10 +194,14 @@ $publicHeight: 35px;
}
}
+ .el-step__main {
+ width: 200px;
+ }
+
.el-step__line {
background-color: rgba(0, 0, 0, 0.15);
- margin-right: 30px;
- margin-left: 105px;
+ margin-right: 10px;
+ margin-left: 135px;
top: 50%;
height: 1px;
}
@@ -164,7 +215,7 @@ $publicHeight: 35px;
}
.el-step__title.is-wait {
- width: 410%;
+ width: 100%;
color: #999999;
}
diff --git a/src/views/work/components/HandleOverrule.vue b/src/views/work/components/HandleOverrule.vue
new file mode 100644
index 0000000..8b90ad1
--- /dev/null
+++ b/src/views/work/components/HandleOverrule.vue
@@ -0,0 +1,228 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/work/components/LaunchAppeal.vue b/src/views/work/components/LaunchAppeal.vue
index cf6dbec..de5c6e2 100644
--- a/src/views/work/components/LaunchAppeal.vue
+++ b/src/views/work/components/LaunchAppeal.vue
@@ -79,6 +79,8 @@ const formRef = ref
()
const rules = ref({
appealReason: [
{ required: true, message: '请输入申诉理由', trigger: 'blur' },
+ { min: 10, message: '申诉理由不能少于10个字', trigger: 'blur' },
+ { max: 1000, message: '申诉理由不能多于1000个字', trigger: 'blur' }
]
})
diff --git a/src/views/work/components/OverruleReason.vue b/src/views/work/components/OverruleReason.vue
index c717906..d2343fd 100644
--- a/src/views/work/components/OverruleReason.vue
+++ b/src/views/work/components/OverruleReason.vue
@@ -3,7 +3,7 @@
style="--el-dialog-padding-primary: 10px">
@@ -11,35 +11,43 @@
申诉中
-
+
-
-
-
+
+
+
+
+
驳回理由
+
+ {{ overruleReason }}
+
+
申诉理由
- {{ }}
+ {{ appealReason }}
相关附件
-
+
- 重新申诉
+ 重新申诉
关闭窗口
+