重复审批

This commit is contained in:
zhanglipeng 2020-11-24 15:20:14 +08:00
parent 5d4bc1d64f
commit 64cca4c5cd
3 changed files with 1 additions and 29 deletions
ruoyi-ui/src/views/benyi
mathtermplanapproval
thememonthplanapproval
themeweekplanapproval

@ -87,7 +87,6 @@
type="selection"
width="55"
align="center"
:selectable="isShow"
/>
<el-table-column
fixed
@ -148,7 +147,6 @@
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['benyi:mathtermplan:edit']"
v-show="isShow(scope.row)"
>审批</el-button
>
<el-button
@ -307,14 +305,6 @@ export default {
});
},
methods: {
isShow(row) {
//console.log(row.status);
if (row.status == "1") {
return true;
} else {
return false;
}
},
//
getClassList() {
listClass(null).then((response) => {

@ -111,7 +111,6 @@
type="selection"
width="55"
align="center"
:selectable="isShow"
/>
<el-table-column
fixed
@ -179,7 +178,6 @@
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['benyi:thememonthplan:edit']"
v-show="isShow(scope.row)"
>审批</el-button
>
<el-button
@ -353,13 +351,6 @@ export default {
});
},
methods: {
isShow(row) {
if (row.status == "1") {
return true;
} else {
return false;
}
},
// --
statusFormat(row, column) {
return this.selectDictLabel(this.statusOptions, row.status);

@ -111,7 +111,6 @@
type="selection"
width="55"
align="center"
:selectable="isShow"
/>
<!-- <el-table-column label="编号" align="center" prop="id" /> -->
<el-table-column
@ -168,8 +167,7 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['benyi:themeweekplan:edit']"
v-show="isShow(scope.row)"
v-hasPermi="['benyi:themeweekplan:edit']"
>审批</el-button
>
<el-button
@ -336,13 +334,6 @@ export default {
});
},
methods: {
isShow(row) {
if (row.status == "1") {
return true;
} else {
return false;
}
},
//
getClassList() {
listClass(null).then((response) => {