测试:前台任务设计雏形

master
陈思豪 2024-08-23 20:38:30 +08:00
parent c9e3c1e2f5
commit b8c4c1db55
1 changed files with 13 additions and 17 deletions

View File

@ -158,17 +158,16 @@
</el-form-item>
<el-form-item label="优先级选择">
<el-select v-model="taskReq.weigh" placeholder="请选择等级">
<el-option label="请选择" value=""></el-option>
<el-option label="紧急" value="1"></el-option>
<el-option label="低" value="2"></el-option>
<el-option label="中" value="3"></el-option>
<el-option label="高" value="4"></el-option>
</el-select>
</el-form-item>
<el-table-column
label="任务权重级别"
width="180">
<template slot-scope="scope">
<span style="margin-left: 10px" v-if="scope.row.weigh ==1 "></span>
<span style="margin-left: 10px" v-if="scope.row.weigh ==2 "></span>
<span style="margin-left: 10px" v-if="scope.row.weigh ==3 "></span>
<span style="margin-left: 10px" v-if="scope.row.weigh ==4 "></span>
</template>
</el-table-column>
</el-form>
@ -201,17 +200,14 @@
<el-form-item label="表别名">
<el-input v-model="taskInputReq.tableAsName"></el-input>
</el-form-item>
<div slot="footer" class="dialog-footer">
<el-button @click="taskInputAdd = false"> </el-button>
<el-button type="primary" @click="addTaskInput()"></el-button>
</div>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogFormVisible = false"> </el-button>
<el-button type="primary" @click="addTask()"> </el-button>
<el-button @click="taskInputAdd = false"> </el-button>
<el-button type="primary" @click="addTaskInput()"></el-button>
</div>
</el-dialog>
<!-- 字段选择列表-->