This commit is contained in:
zty 2024-12-12 14:56:12 +08:00
commit 0c910a1783
2 changed files with 19 additions and 1 deletions

View File

@ -1661,6 +1661,24 @@ const routes = [
perms: ["qm"],
},
children: [
{
name: "testItem",
path: "/qm/testItem",
meta: {
title: "检验项",
perms: ["test_item"],
},
component: "qm/testItem",
},
{
name: "checkForm",
path: "/qm/checkForm",
meta: {
title: "检验表",
perms: ["check_form"],
},
component: "qm/checkForm",
},
{
name: "income",
path: "/qm/income",

View File

@ -33,7 +33,7 @@
<el-option v-for="item in group" :key="item.id" :label="item.name" :value="item.id"></el-option>
</el-select> -->
</el-form-item>
<el-form-item label="排班规则" v-if="baseCode!=='bxerp'">
<el-form-item label="排班规则">
<el-select v-model="form.shift_rule" style="width: 100%">
<el-option v-for="item in shiftOptions" :key="item" :label="item" :value="item"></el-option>
</el-select>