|
@@ -135,7 +135,8 @@ import {
|
|
|
orderBaseImport,
|
|
|
orderBaseImport2,
|
|
|
orderBaseImport3,
|
|
|
- orderBaseDetail
|
|
|
+ orderBaseDetail,
|
|
|
+ changeOrderChangWebsit
|
|
|
} from '@/api/workOrderPool.js'
|
|
|
import workOrderInfo from './detailModule/workOrderInfo/index.vue'
|
|
|
import Detail from './detail'
|
|
@@ -401,6 +402,25 @@ export default {
|
|
|
this.rescheduleBool = true
|
|
|
}
|
|
|
})
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ this.optionsEvensAuth('bulkOrder', {
|
|
|
+ click: () => {
|
|
|
+ if (this.recordSelected.length === 0) {
|
|
|
+ this.$message.warning('请勾选工单')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ changeOrderChangWebsit({
|
|
|
+ ids: this.recordSelected.map(item => item.id)
|
|
|
+ }).then(res => {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '操作成功!'
|
|
|
+ })
|
|
|
+ this.$refs?.pageRef?.refreshList()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
]
|
|
|
]
|
|
|
]
|