From 58db382cf1f02dd62109f18a38fff3b4d9c064f0 Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期日, 28 四月 2024 11:46:34 +0800
Subject: [PATCH] 薪资方案模块 配置野纤生丝标准的获取接口联调,数据处理+保存配置野纤的接口联调

---
 src/views/employeeSalary/salaryPlan/components/SilkSetDialog.vue |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/src/views/employeeSalary/salaryPlan/components/SilkSetDialog.vue b/src/views/employeeSalary/salaryPlan/components/SilkSetDialog.vue
index 5ec9a12..740ac25 100644
--- a/src/views/employeeSalary/salaryPlan/components/SilkSetDialog.vue
+++ b/src/views/employeeSalary/salaryPlan/components/SilkSetDialog.vue
@@ -7,11 +7,11 @@
        :model="form" 
        label-width="300px"
         label-position="top">
-        <el-form-item label="璇烽�夋嫨閲庣氦鍖呭惈閭e嚑涓敓涓濇爣鍑嗭細" prop="purchaseTypeList">
-              <el-checkbox-group v-model="form.purchaseTypeList">
+        <el-form-item label="璇烽�夋嫨閲庣氦鍖呭惈閭e嚑涓敓涓濇爣鍑嗭細" prop="wildSilkList">
+              <el-checkbox-group v-model="form.wildSilkList">
                 <el-checkbox
                   v-for="item in silkSetList"
-                  :label="item.id"
+                  :label="item.value"
                   :key=item.id
                   >{{ item.value }}</el-checkbox
                 >
@@ -43,11 +43,11 @@
       islook: false,
       silkSetList:getDataByType('silkSet'),
       form: {
-        purchaseTypeList:[1],
+        wildSilkList:['閲庣氦'],
       },
       rules: {
         // 閲囪喘绫诲瀷
-        purchaseTypeList: [
+        wildSilkList: [
           { required: true, message: "璇烽�夋嫨", trigger: ["blur",'change'] },
         ],
       },
@@ -70,8 +70,7 @@
     onSubmit() {
       this.$refs.form.validate((valid) => {
         if (valid) {
-          this.$emit('confirmValueSave',this.form,1)
-          this.shutdown()
+          this.$emit('confirmValueSave',this.form,9)
         }
       });
     },

--
Gitblit v1.8.0