Browse Source

中间支付申请

ZaiZai 1 year ago
parent
commit
816b07aa0f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/debit-pay/admin/certificate.vue

+ 2 - 2
src/views/debit-pay/admin/certificate.vue

@@ -76,7 +76,7 @@ const tableColumn = ref([
     { key: 'printDate', name: '打印日期' },
     { key: 'calculateDate', name: '重新计算时间' },
     { key: 'payMoney', name: '支付金额' },
-    { key: 'action', name: '操作', width: 260 },
+    { key: 'action', name: '操作', width: 280 },
 ])
 const tableData = ref([])
 const getTableData = async () => {
@@ -131,7 +131,7 @@ const rowLockingClick = async (row) => {
     //isLock,是否锁定:0未锁定,1锁定
     const { code, msg } = await mainApi.setLocking({
         id: row.id,
-        isLock: row.isLock === 0 ? 1 : 0,
+        isLock: row.isLock,
     })
     if (code === 200) {
         window.$message.success('操作成功')