Browse Source

更新打包

lex 1 year ago
parent
commit
1163529627

+ 1 - 0
dist/static/css/chunk-5eb5a790.fae609aa.css

@@ -0,0 +1 @@
+.right-code .title[data-v-27e9ba84]{font-size:18px;text-align:center;padding-bottom:8px}.newBand[data-v-27e9ba84]{display:inline-block}.el-input[data-v-27e9ba84]{width:180px!important}[data-v-27e9ba84] .el-select{width:auto!important}

+ 0 - 1
dist/static/css/chunk-67d92e84.624e6e4e.css

@@ -1 +0,0 @@
-.right-code .title[data-v-1eccf71c]{font-size:18px;text-align:center;padding-bottom:8px}.newBand[data-v-1eccf71c]{display:inline-block}.el-input[data-v-1eccf71c]{width:180px!important}[data-v-1eccf71c] .el-select{width:auto!important}

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-5eb5a790.af192241.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-67d92e84.39255c8e.js


+ 7 - 4
src/views/sporadicManager/sporadicList.vue

@@ -291,8 +291,9 @@
           ></el-input>
         </el-form-item>
         <el-form-item label="分部" prop="organId">
-          <el-select
+          <select-all
             v-model.trim="maskForm.organId"
+            placeholder="请选择分部"
             :disabled="!isNew"
             clearable
             @change="onMusicGroupChange"
@@ -304,10 +305,10 @@
             <el-option
               v-for="(item, index) in selects.branchs"
               :key="index"
-              :value="item.id"
               :label="item.name"
+              :value="item.id"
             ></el-option>
-          </el-select>
+          </select-all>
         </el-form-item>
         <el-form-item
           label="所属乐团"
@@ -756,7 +757,9 @@ export default {
       maskForm.id = row.id;
       maskForm.desc = row.detail;
       maskForm.title = row.title;
-      maskForm.organId = row.organId;
+      maskForm.organId = row.organId
+        ? row.organId.split(",").map(i => Number(i))
+        : [];
       maskForm.money = row.amount;
       maskForm.subMoney = row.discountAmount;
       maskForm.maxAmount = row.maxAmount;

Some files were not shown because too many files changed in this diff