diff --git a/src/views/information/specialBusiness/emptyOrder/dataList.vue b/src/views/information/specialBusiness/emptyOrder/dataList.vue index e319118..b3748a6 100644 --- a/src/views/information/specialBusiness/emptyOrder/dataList.vue +++ b/src/views/information/specialBusiness/emptyOrder/dataList.vue @@ -602,192 +602,7 @@
{{ scope.row.transferAchieve }}
- - - - - - - - - - - - - - - - - - - - - - - - {{ scope.row.transferAchieve }} - - - - - - - - - - - - - - - - - - - - - - - - @@ -241,7 +254,7 @@ import * as api from '@/api/specialBusiness.js' export default { name: 'Bzpz', components: { - topBar, + topBar }, data() { return { @@ -251,7 +264,7 @@ export default { // 查询参数 queryParams: { pageNum: 1, - pageSize: 50, + pageSize: 50 }, addOrEdit: '', total: 0, @@ -261,17 +274,17 @@ export default { topList: [ { name: '空单注册', - path: 'emptyOrder', + path: 'emptyOrder' }, { name: '生成列表', - path: 'creatList', + path: 'creatList' }, { name: '注册列表', - path: 'rigiestList', - }, - ], + path: 'rigiestList' + } + ] } }, mounted() { @@ -297,8 +310,8 @@ export default { this.$router.push({ path: 'dataList', query: { - pkId: id, - }, + pkId: id + } }) }, // 点击修改 @@ -306,8 +319,8 @@ export default { this.$router.push({ path: 'missionDetails', query: { - pkId: id, - }, + pkId: id + } }) }, // 删除 @@ -317,16 +330,16 @@ export default { arr = [id] } else { arr = this.selectRow.map((item) => { - return item.pkId - }) + return item.pkId + }) } this.$confirm('确认删除?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', - type: 'warning', + type: 'warning' }).then(() => { api.createListDel({ - pkIdList:arr + pkIdList: arr }).then((res) => { this.getDataList() }) @@ -334,7 +347,7 @@ export default { }, openDig() { this.$router.push({ - path: 'missionDetails', + path: 'missionDetails' }) // this.$router.push({ // path: 'noticeList/details', @@ -357,7 +370,7 @@ export default { this.$confirm('是否确认导出所有数据项?', '警告', { confirmButtonText: '确定', cancelButtonText: '取消', - type: 'warning', + type: 'warning' }).then((_) => { this.download( '/member/manage/member-empty-register/register-export', @@ -373,8 +386,8 @@ export default { return 'success-row' } return '' - }, - }, + } + } }