优化 显示 赴校信息流程
This commit is contained in:
parent
69ebb99616
commit
ffa3d9b50b
|
|
@ -15,7 +15,7 @@ export default {
|
||||||
{
|
{
|
||||||
path: "/welcome",
|
path: "/welcome",
|
||||||
name: "Welcome",
|
name: "Welcome",
|
||||||
component: () => import("@/views/welcome/index.vue"),
|
component: () => import("@/views/toschoolinfomanage/index.vue"),
|
||||||
meta: {
|
meta: {
|
||||||
title: "首页",
|
title: "首页",
|
||||||
showLink: VITE_HIDE_HOME === "true" ? false : true
|
showLink: VITE_HIDE_HOME === "true" ? false : true
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="action-box">
|
<div class="action-box">
|
||||||
<el-button @click="onClickCancel">取消</el-button>
|
<el-button @click="onClickCancel">取消</el-button>
|
||||||
<el-button :disabled="isDetail" type="primary" @click="onClickSave"
|
<el-button v-show="!isDetail" type="primary" @click="onClickSave">保存</el-button>
|
||||||
>保存</el-button
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
|
@ -93,11 +91,11 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-button
|
<el-button
|
||||||
|
v-show="!isDetail"
|
||||||
type="text"
|
type="text"
|
||||||
v-else
|
v-else
|
||||||
style="margin-top: 5px; font-size: 12px"
|
style="margin-top: 5px; font-size: 12px"
|
||||||
class="markTitle"
|
class="markTitle"
|
||||||
:disabled="isDetail"
|
|
||||||
@click="markTitle(i)"
|
@click="markTitle(i)"
|
||||||
>
|
>
|
||||||
标记已解决
|
标记已解决
|
||||||
|
|
@ -109,12 +107,14 @@
|
||||||
<!-- {{ safeDetail.feedbackQuestions }} -->
|
<!-- {{ safeDetail.feedbackQuestions }} -->
|
||||||
<!-- .............................................................. -->
|
<!-- .............................................................. -->
|
||||||
<el-descriptions title="备注" :column="1" border> </el-descriptions>
|
<el-descriptions title="备注" :column="1" border> </el-descriptions>
|
||||||
|
<span v-show="!safeDetail.remark">未录入备注</span>
|
||||||
<el-input
|
<el-input
|
||||||
v-model="safeDetail.remark"
|
v-model="safeDetail.remark"
|
||||||
:rows="4"
|
:rows="4"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
:disabled="isDetail"
|
:disabled="isDetail"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<el-divider />
|
<el-divider />
|
||||||
|
|
||||||
<el-descriptions title="解决方案执行跟踪记录" :column="1" border> </el-descriptions>
|
<el-descriptions title="解决方案执行跟踪记录" :column="1" border> </el-descriptions>
|
||||||
|
|
@ -127,7 +127,7 @@
|
||||||
type="text"
|
type="text"
|
||||||
style="margin-top: 5px; font-size: 12px"
|
style="margin-top: 5px; font-size: 12px"
|
||||||
class="markTitle"
|
class="markTitle"
|
||||||
:disabled="isDetail"
|
v-show="!isDetail"
|
||||||
@click="addRecord"
|
@click="addRecord"
|
||||||
>
|
>
|
||||||
添加执行记录
|
添加执行记录
|
||||||
|
|
@ -136,7 +136,7 @@
|
||||||
style="margin-top: 5px; font-size: 12px"
|
style="margin-top: 5px; font-size: 12px"
|
||||||
class="markTitle"
|
class="markTitle"
|
||||||
type="text"
|
type="text"
|
||||||
:disabled="isDetail"
|
v-show="!isDetail"
|
||||||
@click="addFinish"
|
@click="addFinish"
|
||||||
>
|
>
|
||||||
{{ finishRecord ? "修改完结情况" : "添加完结情况" }}
|
{{ finishRecord ? "修改完结情况" : "添加完结情况" }}
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "Welcome"
|
name: "Welcome",
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<h1>Pure-Admin-Thin(非国际化版本)</h1>
|
<h1>学校档案系统</h1>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue