liyong
2026-05-14 867d84120fff6863ccf93c9d1ab97744a82a5397
公海+采购合同
已修改2个文件
54 ■■■■ 文件已修改
src/views/basicData/customerFileOpenSea/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/procurementManagement/procurementLedger/index.vue 46 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/basicData/customerFileOpenSea/index.vue
@@ -884,7 +884,7 @@
    },
    {
      label: "领用状态",
      prop: "usageStatus",
      prop: "isAssigned",
      dataType: "tag",
      width: 100,
            fixed: "right",
@@ -917,7 +917,7 @@
        {
          name: "分配",
          type: "text",
          showHide: row => row.usageStatus != 1,
          showHide: row => row.isAssigned != 1,
          clickFun: row => {
            openAssignDialog(row);
          },
@@ -925,7 +925,7 @@
        {
          name: "回收",
          type: "text",
          showHide: row => row.usageStatus == 1,
          showHide: row => row.isAssigned == 1,
          clickFun: row => {
            recycle(row);
          },
@@ -933,7 +933,7 @@
                {
                    name: "共享",
                    type: "text",
                    showHide: row => row.usageStatus == 1,
                    showHide: row => row.isAssigned == 1,
                    clickFun: row => {
                        openShareDialog(row);
                    },
src/views/procurementManagement/procurementLedger/index.vue
@@ -115,62 +115,62 @@
        <el-table-column align="center"
                         label="序号"
                         type="index"
                         width="60" />
                         width="80" />
        <el-table-column label="采购合同号"
                         prop="purchaseContractNumber"
                         width="160"
                         min-width="160"
                         show-overflow-tooltip />
        <el-table-column label="销售合同号"
                         prop="salesContractNo"
                         width="160"
                         min-width="160"
                         show-overflow-tooltip />
        <el-table-column label="供应商名称"
                         prop="supplierName"
                         width="160"
                         min-width="160"
                         show-overflow-tooltip />
        <el-table-column label="项目名称"
                         prop="projectName"
                         width="320"
                         min-width="200"
                         show-overflow-tooltip />
        <el-table-column label="审批状态"
                         prop="approvalStatus"
                         width="100"
                         show-overflow-tooltip>
          <template #default="scope">
            <el-tag :type="getApprovalStatusType(scope.row.approvalStatus)"
                    size="small">
              {{ approvalStatusText[scope.row.approvalStatus] || '未知状态' }}
            </el-tag>
          </template>
        </el-table-column>
        <!--        <el-table-column label="审批状态"-->
        <!--                         prop="approvalStatus"-->
        <!--                         width="100"-->
        <!--                         show-overflow-tooltip>-->
        <!--          <template #default="scope">-->
        <!--            <el-tag :type="getApprovalStatusType(scope.row.approvalStatus)"-->
        <!--                    size="small">-->
        <!--              {{ approvalStatusText[scope.row.approvalStatus] || '未知状态' }}-->
        <!--            </el-tag>-->
        <!--          </template>-->
        <!--        </el-table-column>-->
        <el-table-column label="签订日期"
                         prop="executionDate"
                         width="100"
                         width="120"
                         show-overflow-tooltip />
        <el-table-column label="付款方式"
                         width="100"
                         width="120"
                         prop="paymentMethod"
                         show-overflow-tooltip />
        <el-table-column label="合同金额(元)"
                         prop="contractAmount"
                         width="200"
                         width="150"
                         show-overflow-tooltip
                         :formatter="formattedNumber" />
        <el-table-column label="录入人"
                         prop="recorderName"
                         width="120"
                         width="100"
                         show-overflow-tooltip />
        <el-table-column label="录入日期"
                         prop="entryDate"
                         width="100"
                         width="120"
                         show-overflow-tooltip />
        <el-table-column label="备注"
                         prop="remarks"
                         width="200"
                         min-width="150"
                         show-overflow-tooltip />
        <el-table-column fixed="right"
                         label="操作"
                         width="120"
                         width="140"
                         align="center">
          <template #default="scope">
            <el-button link