fix:禅道210
This commit is contained in:
parent
53e2d487bf
commit
fd5254aee3
|
|
@ -136,8 +136,27 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="班次"></el-table-column>
|
<el-table-column label="班次">
|
||||||
<el-table-column label="创建时间"></el-table-column>
|
<template #default="scope">
|
||||||
|
<el-select
|
||||||
|
v-if="scope.row.isEdit"
|
||||||
|
v-model="scope.row.shift"
|
||||||
|
placeholder="班次"
|
||||||
|
class="width-100"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="item in shiftOtions"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
<div v-else>
|
||||||
|
<span v-if="scope.row.shift_name!==null">{{ scope.row.shift_name}}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="操作" fixed="right" align="center" width="150px">
|
<el-table-column label="操作" fixed="right" align="center" width="150px">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-button v-if="scope.row.isEdit" type="success" @click="saveMuserSubmit(scope.row)">保存</el-button>
|
<el-button v-if="scope.row.isEdit" type="success" @click="saveMuserSubmit(scope.row)">保存</el-button>
|
||||||
|
|
@ -516,6 +535,7 @@ export default {
|
||||||
printer_name:localStorage.getItem("printer_name"),
|
printer_name:localStorage.getItem("printer_name"),
|
||||||
addTemplate:{
|
addTemplate:{
|
||||||
mlog: "",
|
mlog: "",
|
||||||
|
shift:"",
|
||||||
process: "",
|
process: "",
|
||||||
equipment: "",
|
equipment: "",
|
||||||
handle_user: "",
|
handle_user: "",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue