|
@@ -28,7 +28,9 @@
|
|
<p>待审核</p>
|
|
<p>待审核</p>
|
|
<p>1</p>
|
|
<p>1</p>
|
|
</div>
|
|
</div>
|
|
- <div class="audit-card-action">进入 <RightOutlined /></div>
|
|
|
|
|
|
+ <div class="audit-card-action" @click="toPage('InTimeAudit')">
|
|
|
|
+ 进入 <RightOutlined />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -44,7 +46,9 @@
|
|
<p>待审核</p>
|
|
<p>待审核</p>
|
|
<p>1</p>
|
|
<p>1</p>
|
|
</div>
|
|
</div>
|
|
- <div class="audit-card-action">进入 <RightOutlined /></div>
|
|
|
|
|
|
+ <div class="audit-card-action" @click="toPage('ReviewAudit')">
|
|
|
|
+ 进入 <RightOutlined />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -68,7 +72,9 @@
|
|
<p>待审核</p>
|
|
<p>待审核</p>
|
|
<p>1</p>
|
|
<p>1</p>
|
|
</div>
|
|
</div>
|
|
- <div class="audit-card-action">进入 <RightOutlined /></div>
|
|
|
|
|
|
+ <div class="audit-card-action" @click="toPage('ImageCheckAudit')">
|
|
|
|
+ 进入 <RightOutlined />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="audit-box-foot">
|
|
<div class="audit-box-foot">
|
|
@@ -77,9 +83,15 @@
|
|
</a-tag>
|
|
</a-tag>
|
|
<a-space :size="8">
|
|
<a-space :size="8">
|
|
<span>轮播时间配置:</span>
|
|
<span>轮播时间配置:</span>
|
|
- <a-input></a-input>
|
|
|
|
|
|
+ <a-input-number
|
|
|
|
+ v-model:value="imageCheckLoopTime"
|
|
|
|
+ :min="0"
|
|
|
|
+ :max="9999"
|
|
|
|
+ :precision="0"
|
|
|
|
+ :controls="false"
|
|
|
|
+ ></a-input-number>
|
|
<span>秒/张</span>
|
|
<span>秒/张</span>
|
|
- <a-button type="primary">设置</a-button>
|
|
|
|
|
|
+ <a-button type="primary" @click="onSetLoopTime">设置</a-button>
|
|
</a-space>
|
|
</a-space>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -97,6 +109,8 @@ import {
|
|
RightOutlined,
|
|
RightOutlined,
|
|
PieChartFilled,
|
|
PieChartFilled,
|
|
} from "@ant-design/icons-vue";
|
|
} from "@ant-design/icons-vue";
|
|
|
|
+import { message } from "ant-design-vue";
|
|
|
|
+
|
|
import { useRouter } from "vue-router";
|
|
import { useRouter } from "vue-router";
|
|
import { useUserStore } from "@/store";
|
|
import { useUserStore } from "@/store";
|
|
import SelectExamDialog from "./SelectExamDialog.vue";
|
|
import SelectExamDialog from "./SelectExamDialog.vue";
|
|
@@ -116,4 +130,14 @@ const selectExamDialogRef = ref();
|
|
function onSwitchExam() {
|
|
function onSwitchExam() {
|
|
selectExamDialogRef.value?.open();
|
|
selectExamDialogRef.value?.open();
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+const imageCheckLoopTime = ref(userStore.imageCheckLoopTime);
|
|
|
|
+function onSetLoopTime() {
|
|
|
|
+ if (!imageCheckLoopTime.value && imageCheckLoopTime.value !== 0) {
|
|
|
|
+ message.error("请输入轮播时间");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ userStore.setImageCheckLoopTime(imageCheckLoopTime.value);
|
|
|
|
+}
|
|
</script>
|
|
</script>
|