hejizheng 1 жил өмнө
parent
commit
5e4fbb6ebd

+ 2 - 14
src/views/norm/quotaBonded.vue

@@ -71,23 +71,11 @@
             (scope.row.approvalStatus == 0 ||
               scope.row.approvalStatus == null ||
               scope.row.approvalStatus == 3) &&
-            checkPermi(['gather:QUOTABONDED:audit'])
+            checkPermi(['business:QUOTABONDED:audit'])
             " icon="el-icon-top" size="mini" type="text" @click="handleApprove(scope.row)">提交审核</el-button>
-          <!-- <el-button
-            v-if="
-              scope.row.auditStatus == 1 &&
-              (scope.row.approvalStatus == 0 ||
-                scope.row.approvalStatus == null) &&
-              checkPermi(['business:QUOTABONDED:edit'])
-            "
-            size="mini"
-            type="text"
-            @click="handleAdminApprove(scope.row)"
-            >审核</el-button
-          > -->
           <el-button v-if="scope.row.approvalStatus == 2 &&
             (scope.row.reportStatus == 0 || scope.row.reportStatus == null) &&
-            checkPermi(['gather:QUOTABONDED:report'])
+            checkPermi(['business:QUOTABONDED:report'])
             " size="mini" type="text" icon="el-icon-check" @click="handleReport(scope.row)">上报</el-button>
 
           <el-button v-if="scope.row.reportStatus == 1 && user.roleId == 10 && scope.row.type == null

+ 3 - 5
src/views/system/notice/index.vue

@@ -373,17 +373,15 @@ export default {
       this.$refs["form"].validate((valid) => {
         if (valid) {
           const pattern = /\"/g;
-          this.form.noticeContent = this.form.noticeContent.replace(pattern, "'");
-          console.log(this.form.noticeContent);
+          this.form.noticeContent = this.form.noticeContent.replace(pattern, "'");          
           if (this.form.noticeId != undefined) {
-            updateNotice(this.form).then((response) => {
+            updateNotice(JSON.stringify(this.form)).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
               this.getList();
             });
           } else {
-            
-            addNotice(this.form).then((response) => {
+            addNotice(JSON.stringify(this.form)).then((response) => {
               this.$modal.msgSuccess("新增成功");
               this.open = false;
               this.getList();