[update] 市场法规清单,清单列表增加排序字段,增加上移下移按钮;外标详情页内容简介整行显示

This commit is contained in:
lideqin
2024-09-19 16:48:22 +08:00
parent 43b50a8dc4
commit 51dc012101
@@ -754,12 +754,26 @@ export default {
this.loadData()
} else {
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) {