From 3d7bf6dff3d1e2f12c4ecd0120ee110348ccdf49 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期四, 21 十二月 2023 16:27:09 +0800 Subject: [PATCH] 1. 自评预检查功能修改中 --- src/views/fysp/evaluation/components/CompQuickSet.vue | 25 ++++++++++++++++++++----- 1 files changed, 20 insertions(+), 5 deletions(-) diff --git a/src/views/fysp/evaluation/components/CompQuickSet.vue b/src/views/fysp/evaluation/components/CompQuickSet.vue index 23a99a8..e401b49 100644 --- a/src/views/fysp/evaluation/components/CompQuickSet.vue +++ b/src/views/fysp/evaluation/components/CompQuickSet.vue @@ -1,10 +1,19 @@ <template> - <el-row> - <span>蹇嵎閫夋嫨</span> - <el-button v-for="(v, i) in quickSetting" :key="i" type="primary" @click="quickSet(v)">{{ + <el-form-item label="蹇嵎閫夋嫨"> + <el-space> + <el-button v-for="(v, i) in quickSetting" :key="i" type="primary" size="small" @click="quickSet(v)">{{ v.name }}</el-button> - </el-row> + </el-space> + </el-form-item> + <!-- <el-row class="row"> + <el-space> + <el-text>蹇嵎閫夋嫨</el-text> + <el-button v-for="(v, i) in quickSetting" :key="i" type="primary" size="small" @click="quickSet(v)">{{ + v.name + }}</el-button> + </el-space> + </el-row> --> </template> <script> export default { @@ -21,7 +30,7 @@ cCode: '3100', cName: '涓婃捣甯�', dCode: '310106', - dName: '闈欏畨鍖�' + dName: '闈欏畨鍖�', }, scenetype: { label: '宸ュ湴', value: '1' } }, @@ -92,3 +101,9 @@ } } </script> +<style scoped> +.row { + padding: 8px 0px; + /* background-color: antiquewhite; */ +} +</style> -- Gitblit v1.9.3