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