snow vor 2 Jahren
Ursprung
Commit
11ddddacd7

Datei-Diff unterdrückt, da er zu groß ist
+ 0 - 0
dist/static/js/0.js


Datei-Diff unterdrückt, da er zu groß ist
+ 0 - 0
dist/static/js/app.js


+ 2 - 2
src/components/globalComponents/search-supplier/main.vue

@@ -21,7 +21,7 @@
       :key="item.id + index"
       :label="item.name"
       :value="item.code + ''"
-      :disabled="item.status + '' !== '1'"
+      :disabled="!noDisabled && item.status + '' !== '1'"
     />
   </el-select>
 </template>
@@ -32,7 +32,7 @@ import resToken from '@/mixins/resToken'
 export default {
   name: 'SearchSupplier',
   mixins: [resToken],
-  props: ['size', 'value', 'placeholder', 'isDetail', 'disabled', 'names', 'type', 'isp'],
+  props: ['size', 'value', 'placeholder', 'isDetail', 'disabled', 'names', 'type', 'isp', 'noDisabled'],
   /**
    * 属性集合
    * @param {String}        size             : 组件大小            非必填

+ 3 - 2
src/mixins/companyHelper.js

@@ -26,7 +26,7 @@ const companyHelper = {
     */
     isHasCurrentCompany(message = '请选择一家公司') {
       const current = this.currentCompany
-      if (!current) this.$message.warning(message)
+      if (!current && message) this.$message.warning(message)
       return !!current
     },
 
@@ -57,8 +57,9 @@ const companyHelper = {
     currentCompany: {
       handler() {
         const vm = this
+        const { isSupertube, onCompanyChange, onCompanyChangeInner } = vm
         // 超管公司改变后执行该方法(刷新列表页或自定义实现)
-        if (vm.isSupertube) vm.onCompanyChange ? vm.onCompanyChange() : vm.onCompanyChangeInner()
+        if (isSupertube) onCompanyChange ? onCompanyChange() : onCompanyChangeInner()
       },
       deep: true,
       immediate: true

+ 19 - 2
src/views/goodStore/goodsCost/index.vue

@@ -113,6 +113,19 @@
                 />
               </el-select>
             </el-col>
+            <el-col :span="3" style="margin:0 10px">
+              <search-supplier
+                  :size="'mini'"
+                  style="width: 220px"
+                  :value="supplierNo"
+                  :disabled="false"
+                  :placeholder="'供应商名称'"
+                  :names="''"
+                  :isDetail="false"
+                  :noDisabled="true"
+                  @searchChange="supplierChange"
+                />
+            </el-col>
             <el-col :span="4" style="width: 420px; padding: 0 0 0 10px">
               <el-input
                 :size="searchSize"
@@ -559,6 +572,11 @@ export default {
       if(!this.currentIsBusinessCompany()) return
       this.routeGoto('goodsCostDetail', { id: 'add', type: 'add' })
     },
+    async supplierChange(e) {
+      const { code, label } = e;
+      this.supplierNo = code ? [code] : [];
+      this.searchList()
+    },
     // 获取异常原因下拉列表
     async getresultlist() {
       const res = await asyncRequest.resultlist({
@@ -585,10 +603,8 @@ export default {
 
         //有多选框的条件
         this.parmValue.select = this.select;
-        // this.parmValue.sselect = this.sselect ;
         this.parmValue.sinput = this.sinput;
         //
-        console.log(this.parmValue);
         let routerModel = {
           options: JSON.parse(JSON.stringify(this.parmValue)),
           router: this.$route.path,
@@ -797,6 +813,7 @@ export default {
       item.cat_id = item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
       const res = await asyncRequest.list({
         ...item,
+        supplierNo:Array.isArray(this.supplierNo) ? this.supplierNo[0] : '',
         needRela: true
       });
       

Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden.