[update] 市场法规清单,清单列表增加排序字段,增加上移下移按钮;外标详情页内容简介整行显示
This commit is contained in:
+16
-2
@@ -754,12 +754,26 @@ export default {
|
|||||||
this.loadData()
|
this.loadData()
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
this.loading = false
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 下移
|
// 下移
|
||||||
handleDown () {
|
handleDown (record) {
|
||||||
|
this.loading = true
|
||||||
|
const param = {}
|
||||||
|
param.id = this.model.id
|
||||||
|
param.manifestId = record.id
|
||||||
|
param.moveFlag = 'down'
|
||||||
|
marketRegulationDetailMove(param).then(res => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(res.message)
|
||||||
|
this.loadData()
|
||||||
|
} else {
|
||||||
|
this.$message.warning(res.message)
|
||||||
|
this.loading = false
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
// 编辑
|
// 编辑
|
||||||
handleEdit (record) {
|
handleEdit (record) {
|
||||||
|
|||||||
Reference in New Issue
Block a user