龚焕茏
2024-04-26 16b090506aa605407735317ddd6e63e425a879ba
合同积分新增、查询、修改、审核、删除、导出
1个文件已修改
5 ■■■■■ 已修改文件
src/views/system/score/default/index.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/score/default/index.vue
@@ -117,6 +117,7 @@
           type="text"
           icon="el-icon-edit"
           @click="handleUpdate(scope.row)"
           v-if="scope.row.auditingStatus === '待审核'"
           v-hasPermi="['system:auditing:edit']"
         >修改</el-button>
          <el-button
@@ -456,6 +457,10 @@
    handleUpdate(row) {
      this.reset();
      const id = row.id || this.ids
      if (row.auditingStatus != '待审核') {
        this.$message.warning("该记录已审核,不能修改");
        return;
      }
      getAuditing(id).then(response => {
        this.form = response.data;
        this.open = true;