| | |
| | | :ajaxFun="ajaxFun" |
| | | ref="routingTable" |
| | | > |
| | | <template #toolbar> |
| | | <el-button v-if="permissions.technology_routing_add" |
| | | type="primary" @click="addOrUpdateHandle">新增</el-button> |
| | | <el-button @click="() => {this.approveHandle('ACCEPT')}" |
| | | :disabled="!uniqueStateArr.includes('01draft')" |
| | | v-if="permissions.technology_routing_accept">批准</el-button> |
| | | <el-button @click="() => {this.approveHandle('REVOKE')}" |
| | | :disabled="!uniqueStateArr.includes('02accepted')" |
| | | v-if="permissions.technology_routing_revoke">撤回</el-button> |
| | | <el-button @click="() => {this.approveHandle('CANCEL')}" |
| | | :disabled="!uniqueStateArr.includes('02accepted')" |
| | | v-if="permissions.technology_routing_cancel">拒绝</el-button> |
| | | <el-button @click="copyRouting" |
| | | v-if="permissions.technology_routing_cancel">复制</el-button> |
| | | <el-button @click="() => {this.deleteAll()}" type="primary" |
| | | v-if="permissions.technology_routing_batch_del">批量删除</el-button> |
| | | </template> |
| | | <template #toolbar></template> |
| | | </ttable> |
| | | <el-dialog title="导入" :visible.sync="importRoutingVisible" width="50%"> |
| | | <span> |
| | |
| | | data() { |
| | | return { |
| | | ids: [], |
| | | uniqueStateArr: [], |
| | | ajaxFun: fetchList, |
| | | multipleSelection: [], |
| | | isShowQuery: false, |
| | |
| | | this.getData() |
| | | }, |
| | | created() { |
| | | if(this.permissions.technology_routing_add){ |
| | | this.table.toolbar.push({ |
| | | text: '新增', |
| | | disabled: false, |
| | | type: 'primary', |
| | | fun: ()=>{this.addOrUpdateHandle()}, |
| | | permitArr: [] |
| | | }) |
| | | } |
| | | if(this.permissions.technology_routing_accept){ |
| | | this.table.toolbar.push({ |
| | | text: '批准', |
| | | disabled: true, |
| | | fun: ()=>{this.approveHandle('ACCEPT')}, |
| | | permitArr: ['01draft'], |
| | | }) |
| | | } |
| | | if(this.permissions.technology_routing_revoke){ |
| | | this.table.toolbar.push({ |
| | | text: '撤回', |
| | | disabled: true, |
| | | fun: () => {this.approveHandle('REVOKE')}, |
| | | permitArr: ['02accepted'], |
| | | }) |
| | | } |
| | | if(this.permissions.technology_routing_cancel){ |
| | | this.table.toolbar.push({ |
| | | text: '拒绝', |
| | | disabled: true, |
| | | fun: ()=>{this.approveHandle('CANCEL')}, |
| | | permitArr: ['02accepted'], |
| | | }) |
| | | } |
| | | if(this.permissions.technology_routing_copy){ |
| | | this.table.toolbar.push({ |
| | | text: '复制', |
| | | disabled: false, |
| | | fun: ()=>{this.copyRouting()}, |
| | | permitArr: [] |
| | | }) |
| | | } |
| | | if(this.permissions.technology_routing_batch_del){ |
| | | this.table.toolbar.push({ |
| | | text: '批量删除', |
| | | type:'primary', |
| | | disabled: false, |
| | | permitArr: [], |
| | | fun: ()=>{this.copyRouting()}, |
| | | }) |
| | | } |
| | | if(this.permissions.technology_routing_del){ |
| | | this.table.operator = [ |
| | | { |
| | |
| | | ] |
| | | } |
| | | this.getBomTypeDbOptions() |
| | | }, |
| | | watch:{ |
| | | multipleSelection(newVal){ |
| | | if(newVal.length==0){ |
| | | this.table.toolbar.forEach(ele=>{ |
| | | if(ele.text=='拒绝' || ele.text=='批准' || ele.text=='撤回'){ |
| | | ele.disabled = true |
| | | } |
| | | }) |
| | | } |
| | | } |
| | | }, |
| | | methods: { |
| | | getData() { |
| | |
| | | uniqueStateArr.push(stateArr[i]) |
| | | } |
| | | } |
| | | this.uniqueStateArr = uniqueStateArr |
| | | // this.uniqueStateArr = uniqueStateArr |
| | | // 循环表头按钮,判断每个按钮的permitArr是否完全包含选中状态,若完全包含,则按钮亮,否则按钮灰 |
| | | // var toolbar = this.table.toolbar |
| | | // for (var j = 0; j < toolbar.length; j++) { |
| | | // if ( |
| | | // uniqueStateArr.every((val) => |
| | | // toolbar[j].permitArr.length <= 0 |
| | | // ? true |
| | | // : toolbar[j].permitArr.includes(val) |
| | | // ) |
| | | // ) { |
| | | // toolbar[j].disabled = false |
| | | // } else { |
| | | // toolbar[j].disabled = true |
| | | // } |
| | | // } |
| | | var toolbar = this.table.toolbar |
| | | for (var j = 0; j < toolbar.length; j++) { |
| | | if ( |
| | | uniqueStateArr.every((val) => |
| | | toolbar[j].permitArr.length <= 0 |
| | | ? true |
| | | : toolbar[j].permitArr.includes(val) |
| | | ) |
| | | ) { |
| | | toolbar[j].disabled = false |
| | | } else { |
| | | toolbar[j].disabled = true |
| | | } |
| | | } |
| | | // 将选中记录赋值给multipleSelection |
| | | this.multipleSelection = val |
| | | }, |