df35b73a by lihua

fix: 解决bug

1 parent 34f62b6b
......@@ -219,7 +219,9 @@ const tableInfo = ref({
btns.push({
value: 'del', label: '销毁', click: (scope) => {
proxy.$openMessageBox("此操作将永久销毁已推送至数据使用方连接器的该数据产品,并解除对应的数字合约,是否继续?", () => {
tableInfo.value.loading = true;
deleteDeliveryContract([scope.row.guid]).then((res: any) => {
tableInfo.value.loading = false;
if (res?.code == proxy.$passCode) {
page.value.curr = 1;
getTableData();
......
......@@ -43,7 +43,7 @@ const page = ref({
const tableFields = ref([
{ label: "序号", type: "index", width: 56, align: "center" },
{
label: "数据产品名称", field: "dataProductName", width: 160, type: "text_btn", columClass: 'text_btn', value: "detail", disabled: (scope) => {
label: "数据产品名称", field: "dataProductName", width: 160, type: "text_btn", columClass: '', value: "detail", disabled: (scope) => {
return scope.row.contractStatus == '06';
}, click: (scope) => {
if (scope.row.contractStatus == '06') {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!