Browse Source

修改传参测试

Sanmu8 1 year ago
parent
commit
f111297cbf
2 changed files with 23 additions and 10 deletions
  1. 6 5
      src/views/JOINTCONFERENCE/add.vue
  2. 17 5
      src/views/JOINTCONFERENCE/index.vue

+ 6 - 5
src/views/JOINTCONFERENCE/add.vue

@@ -100,8 +100,8 @@ export default {
           if (this.form.id != null) {
             updateJOINTCONFERENCE(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
-              this.open = false;
-              this.getList();
+              this.$layer.close(this.layerid);
+              this.$parent.getList();
             });
           } else {
             // this.form.deptName = [];
@@ -116,11 +116,12 @@ export default {
             //     }
             //   }
             // }
-            this.form.deptId = this.deptId.toString();
+            //俊豪像甲方一样,老是让我改传参
+            this.form.deptId = this.deptId
             addJOINTCONFERENCE(this.form).then((response) => {
               this.$modal.msgSuccess("发布成功");
-              this.open = false;
-              this.getList();
+              this.$layer.close(this.layerid);
+              this.$parent.getList();
             });
           }
         }

+ 17 - 5
src/views/JOINTCONFERENCE/index.vue

@@ -122,10 +122,16 @@
           <el-button
             size="mini"
             type="text"
-            icon="el-icon-delete"
-            @click="handleDelete(scope.row)"
-            v-hasPermi="['business:JOINTCONFERENCE:remove']"
-            >删除</el-button
+            @click="goDetail(scope.row)"
+            v-hasPermi="['business:JOINTCONFERENCE:edit']"
+            >会议详情</el-button
+          >
+          <el-button
+            size="mini"
+            type="text"
+            @click="handleUnit(scope.row)"
+            v-hasPermi="['business:JOINTCONFERENCE:edit']"
+            >单位指派</el-button
           >
         </template>
       </el-table-column>
@@ -238,6 +244,12 @@ export default {
     this.getList();
   },
   methods: {
+    goDetail(row){
+
+    },
+    handleUnit(row){
+      
+    },
     /** 查询联席会议列表 */
     getList() {
       this.loading = true;
@@ -320,7 +332,7 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal
-        .confirm('是否确认删除联席会议编号为"' + ids + '"的数据项?')
+        .confirm('是否确认删除?')
         .then(function () {
           return delJOINTCONFERENCE(ids);
         })