snow 2 vuotta sitten
vanhempi
commit
55f42ae8c0

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
dist/static/js/0.js


+ 1 - 0
src/views/goodStore/sort/addEdit.vue

@@ -48,6 +48,7 @@
                   v-for="item in specOptions"
                   :key="item.id"
                   :label="item.spec_name"
+                  :disabled="String(item.status) === '0'"
                   :value="item.id"
                 >
                 </el-option>

+ 102 - 99
src/views/serviceParam/unusualReason/addEdit.vue

@@ -1,26 +1,26 @@
 <template>
   <el-dialog
+    v-loading="loading"
     :title="title"
     :center="true"
     align="left"
     top="12vh"
     width="700px"
-    @close="showModelThis = false"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
-    v-loading="loading"
     element-loading-text="拼命加载中"
     element-loading-spinner="el-icon-loading"
     element-loading-background="rgba(0, 0, 0, 0.8)"
+    @close="showModelThis = false"
   >
     <el-card style="margin: -20px 0 0 0">
       <el-row :gutter="10">
         <el-col :span="24">
           <el-form
+            ref="ruleForm"
             :model="ruleForm"
             status-icon
             :rules="rulesThis"
-            ref="ruleForm"
             label-width="80px"
             class="demo-ruleForm"
           >
@@ -36,8 +36,7 @@
                   :key="item.id"
                   :label="item.label"
                   :value="item.id"
-                >
-                </el-option>
+                />
               </el-select>
             </el-form-item>
             <el-form-item label="原因标题" prop="result">
@@ -47,25 +46,28 @@
                 placeholder="原因标题"
                 maxlength="50"
                 show-word-limit
-              ></el-input>
+              />
             </el-form-item>
 
             <el-form-item label="原因备注" prop="result_desc">
               <el-input
+                v-model="ruleForm.result_desc"
                 :autosize="{ minRows: 4, maxRows: 10 }"
                 type="textarea"
                 placeholder="原因备注"
                 maxlength="250"
                 show-word-limit
-                v-model="ruleForm.result_desc"
                 :disabled="isDetail"
-              ></el-input>
+              />
             </el-form-item>
           </el-form>
         </el-col>
         <el-col :span="24" style="text-align: right">
-          <el-button type="primary" @click="submitForm" v-if="!isDetail"
-            >保 存
+          <el-button
+            v-if="!isDetail"
+            type="primary"
+            @click="submitForm"
+          >保 存
           </el-button>
           <el-button @click="showModelThis = false">{{
             isDetail ? "关 闭" : "取 消"
@@ -75,175 +77,176 @@
     </el-card>
   </el-dialog>
 </template>
-   <script>
-import asyncRequest from "@/apis/service/serviceParam/unusualReason";
-import resToken from "@/mixins/resToken";
+<script>
+import asyncRequest from '@/apis/service/serviceParam/unusualReason'
+import resToken from '@/mixins/resToken'
 export default {
-  name: "unusualReason",
-  props: ["showModel", "id", "isDetail", "sitem"],
+  name: 'UnusualReason',
   mixins: [resToken],
+  props: ['showModel', 'id', 'isDetail', 'sitem'],
   data() {
     return {
       loading: false,
-      title: "",
+      title: '',
       showModelThis: this.showModel,
       ruleForm: {
-        type: "1",
-        result: "", //入库验收异常原因
-        result_desc: "", //入库异常备注
+        type: '1',
+        result: '', // 入库验收异常原因
+        result_desc: '' // 入库异常备注
       },
       rulesThis: this.rules,
       options: [
-        { id: "1", label: "入库验收异常" },
-        { id: "2", label: "退货验收异常" },
-        { id: "3", label: "售后已收到货异常" },
-        { id: "4", label: "采购退货" },
-        { id: "5", label: "销售退换货" },
-        { id: "6", label: "售后未收到货异常" },
-        { id: "7", label: "议价申请原因" },
-        { id: "8", label: "商品下线原因" },
+        { id: '1', label: '入库验收异常' },
+        { id: '2', label: '退货验收异常' },
+        { id: '3', label: '售后已收到货异常' },
+        { id: '4', label: '采购退货' },
+        { id: '5', label: '销售退换货' },
+        { id: '6', label: '售后未收到货异常' },
+        { id: '7', label: '议价申请原因' },
+        { id: '8', label: '商品下线原因' }
       ],
 
       rules: {
         type: [
           {
             required: true,
-            trigger: "change",
-            message: "请选择原因类型",
-          },
+            trigger: 'change',
+            message: '请选择原因类型'
+          }
         ],
         result: [
           {
             required: true,
-            trigger: "blur",
-            message: "入库异常原因不能为空",
-          },
+            trigger: 'blur',
+            message: '入库异常原因不能为空'
+          }
         ],
 
         result_desc: [
           {
             required: true,
-            trigger: "blur",
-            message: "入库异常备注不能为空",
-          },
-        ],
-      },
-    };
+            trigger: 'blur',
+            message: '入库异常备注不能为空'
+          }
+        ]
+      }
+    }
   },
   watch: {
-    showModel: function (val) {
-      this.showModelThis = val;
+    showModel: function(val) {
+      this.showModelThis = val
       if (val) {
-        this.initForm();
+        this.initForm()
       }
     },
     showModelThis(val) {
       if (!val) {
-        this.$emit("cancel");
+        this.$emit('cancel')
       }
-    },
+    }
   },
   methods: {
     async initForm() {
-      this.loading = true;
-      if (this.id === "add") {
-        this.title = "添加异常原因";
-        this.rulesThis = this.rules;
-        await this.resetForm();
+      this.loading = true
+      if (this.id === 'add') {
+        this.title = '添加异常原因'
+        this.rulesThis = this.rules
+        await this.resetForm()
       } else {
         if (this.isDetail) {
-          this.title = "异常原因详情";
-          this.rulesThis = {};
+          this.title = '异常原因详情'
+          this.rulesThis = {}
         } else {
-          this.title = "修改异常原因";
-          this.rulesThis = this.rules;
+          this.title = '修改异常原因'
+          this.rulesThis = this.rules
         }
 
-        await this.resetForm();
-        await this.initData();
+        await this.resetForm()
+        await this.initData()
       }
-      this.loading = false;
+      this.loading = false
     },
     // 获取详情列表
     async initData() {
-      const res = await asyncRequest.detail({ id: this.id });
+      const res = await asyncRequest.detail({ id: this.id })
       if (res && res.code === 0 && res.data) {
-        this.ruleForm = res.data;
+        this.ruleForm = res.data
+        this.ruleForm.type = String(this.ruleForm.type)
       } else if (res && res.code >= 100 && res.code <= 104) {
-        await this.logout();
+        await this.logout()
       } else {
-        this.$message.warning(res.message);
+        this.$message.warning(res.message)
       }
     },
     async resetForm() {
       // 重置
       await this.$nextTick(() => {
         if (this.$refs.ruleForm) {
-          this.$refs.ruleForm.resetFields();
-          this.$refs.ruleForm.clearValidate();
+          this.$refs.ruleForm.resetFields()
+          this.$refs.ruleForm.clearValidate()
           this.ruleForm = {
-            result: "", //入库验收异常原因
-            result_desc: "", //入库异常备注
-            type: "1",
-          };
+            result: '', // 入库验收异常原因
+            result_desc: '', // 入库异常备注
+            type: '1'
+          }
         }
-      });
+      })
     },
 
     // 提交功能
     async submitForm() {
-      await this.$refs.ruleForm.validate(async (valid) => {
-        console.log(valid);
+      await this.$refs.ruleForm.validate(async(valid) => {
+        console.log(valid)
         if (valid) {
           if (this.loading) {
-            return;
+            return
           }
-          this.loading = true;
+          this.loading = true
           const { result, result_desc, type } = JSON.parse(
             JSON.stringify(this.ruleForm)
-          );
+          )
           const model = {
-            result: result || "", //入库验收异常原因
-            result_desc: result_desc || "", //入库异常备注
-            type: type || "1",
-            id: this.id,
-          };
-          let res = {};
-          if (this.id === "add") {
-            delete model["id"];
-            res = await asyncRequest.add(model);
+            result: result || '', // 入库验收异常原因
+            result_desc: result_desc || '', // 入库异常备注
+            type: type || '1',
+            id: this.id
+          }
+          let res = {}
+          if (this.id === 'add') {
+            delete model['id']
+            res = await asyncRequest.add(model)
           } else {
-            delete model["type"];
-            res = await asyncRequest.update(model);
-            console.log(res);
+            delete model['type']
+            res = await asyncRequest.update(model)
+            console.log(res)
           }
-          this.loading = false;
+          this.loading = false
           if (res && res.code === 0) {
-            const title = this.id === "add" ? "添加成功" : "修改成功";
+            const title = this.id === 'add' ? '添加成功' : '修改成功'
             this.$notify.success({
               title,
-              message: "",
-            });
-            this.showModelThis = false;
+              message: ''
+            })
+            this.showModelThis = false
             // 刷新
-            this.$emit("refresh");
+            this.$emit('refresh')
           } else if (res && res.code >= 100 && res.code <= 104) {
-            await this.logout();
+            await this.logout()
           } else {
-            this.$message.warning(res.message);
+            this.$message.warning(res.message)
           }
         } else {
-          console.log("error submit!!");
-          return false;
+          console.log('error submit!!')
+          return false
         }
-      });
-    },
-  },
-};
+      })
+    }
+  }
+}
 </script>
 
    <style lang="scss" scoped>
 .unusualReason {
 }
 </style>
-   
+

+ 1 - 1
src/views/serviceParam/workCompany/addEdit.vue

@@ -312,6 +312,7 @@ export default {
                 callback(new Error('联系电话格式不正确!'))
               } else {
                 callback()
+                return true
               }
             }
           }
@@ -427,7 +428,6 @@ export default {
       this.loading = false
     },
     type_search_change(e) {
-      console.log(e)
       const { id, code, label } = e
       if (id) {
         this.ruleForm.type = id

Kaikkia tiedostoja ei voida näyttää, sillä liian monta tiedostoa muuttui tässä diffissä