Browse Source

Merge branch 'v3.0' into company

snow 1 year ago
parent
commit
93e66e991a

+ 7 - 0
.env.v3

@@ -0,0 +1,7 @@
+NODE_ENV = v3
+
+# just a flag
+ENV = 'v3'
+
+# base api
+VUE_APP_BASE_API = '/v3-api'

+ 1 - 1
dist/index.html

@@ -24,7 +24,7 @@
   </script>
   <!--钉钉监控end-->
   <!-- <link rel="icon" href="/favicon.ico"> -->
-  <title>采销bate 3.0公测版</title>
+  <title>采销365</title>
   <style>
     [v-cloak] {
       display: none;

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


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.js


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


+ 1 - 0
package.json

@@ -6,6 +6,7 @@
   "scripts": {
     "dev": "vue-cli-service serve",
     "lint": "eslint --ext .js,.vue src",
+    "build:v3": "vue-cli-service build --mode v3",
     "build:prod": "vue-cli-service build --mode production",
     "build:stage": "vue-cli-service build --mode staging",
     "build:dev": "vue-cli-service build --mode development",

+ 1 - 1
public/index.html

@@ -24,7 +24,7 @@
   </script>
   <!--钉钉监控end-->
   <!-- <link rel="icon" href="<%= BASE_URL %>favicon.ico"> -->
-  <title>采销bate 3.0公测版</title>
+  <title>采销365</title>
   <style>
     [v-cloak] {
       display: none;

+ 30 - 0
src/config/env.v3.js

@@ -0,0 +1,30 @@
+// 生产环境
+module.exports = {
+  title: '采销平台',
+  baseUrl: 'http://wx.wxhr.sit.futurelab.tv',
+  api: {
+    baseApi: 'http://stocknew.test241.wanyuhengtong.com/'
+    // baseApi: 'http://stockwm.test241.wanyuhengtong.com/'
+  },
+  webUrl: 'http://project.web.caixiao365.com/#/test-good-share?id=',
+  fileURL: `https://api2.edu.futurelab.tv`,
+  shareWebUrl: 'http://post.web.caixiao365.com/?prod=1&outCode=',
+  // 分仓
+  // wmUrl: 'http://stockwm.test241.wanyuhengtong.com',
+  appId: 'wx5ac3a2c2d72b6f26',
+  ding: {
+    // 企业id
+    CorpId: 'dingc78fa4301e1a424a35c2f4657eb6378f',
+    // 应用凭证
+    AgentId: '1324690581'
+  },
+  // 结算平台url
+  // settlementPlatformUrl: 'http://127.0.0.1:8848',
+  // 结算平台url
+  settlementPlatformUrl: 'http://fin.caixiao365.com/',
+  // token加密key
+  secretKey: 'key123',
+  loginTitle: '',
+  loginBeian: '京ICP备2022033072号-1',
+  loginBeianUrl: 'https://beian.miit.gov.cn/'
+}

+ 1 - 1
src/layout/components/Sidebar/Logo.vue

@@ -24,7 +24,7 @@ export default {
   },
   data() {
     return {
-      title: '采销bate 3.0公测版',
+      title: '采销365',
       logo: require('@/assets/img/logo.gif')
     }
   }

+ 1 - 1
src/views/businessReportQuery/businessSaleReport/components/table14.vue

@@ -288,7 +288,7 @@ export default {
               const link = document.createElement('a')
               link.style.display = 'none'
               link.href = url
-              const excelName = this.getCompanyWithCode(this.currentCompany) + '-议价明细报表.zip'
+              const excelName = this.getCompanyWithCode(this.currentCompany).name + '-议价明细报表.zip'
               link.setAttribute('download', excelName)
               document.body.appendChild(link)
               link.click()

+ 109 - 106
src/views/goodStore/goodsOnline/components/costFormAddEdit.vue

@@ -42,11 +42,11 @@
             </el-form-item>
             <el-form-item label="系统售价" prop="new_sale_price">
               <el-input
-                placeholder="系统售价"
+                v-model="ruleForm.new_sale_price"
                 v-loading="search_loading"
+                placeholder="系统售价"
                 :disabled="true"
                 maxlength="20"
-                v-model="ruleForm.new_sale_price"
               >
                 <template slot="append">元</template>
               </el-input>
@@ -84,8 +84,8 @@
 
             <el-form-item label="对比平台" prop="market_platform">
               <el-input
-                placeholder="对比平台"
                 v-model="ruleForm.market_platform"
+                placeholder="对比平台"
                 maxlength="50"
               />
             </el-form-item>
@@ -99,10 +99,13 @@
                 </el-form-item>
               </el-col>
               <el-col :span="8" style="text-align: right">
-                <el-button :size="'small'" type="primary" @click="submitForm"
-                  >保 存
+                <el-button
+                  :size="'small'"
+                  type="primary"
+                  @click="submitForm"
+                >保 存
                 </el-button>
-                <el-button @click="showModelThis = false" :size="'small'">{{
+                <el-button :size="'small'" @click="showModelThis = false">{{
                   "取 消"
                 }}</el-button>
               </el-col>
@@ -114,50 +117,50 @@
   </el-dialog>
 </template>
 <script>
-import resToken from "@/mixins/resToken";
-import asyncRequest from "@/apis/service/goodStore/goodsOnline";
+import resToken from '@/mixins/resToken'
+import asyncRequest from '@/apis/service/goodStore/goodsOnline'
 export default {
-  name: "brand",
-  props: ["showModel", "index", "sitem", "spuCode"],
+  name: 'Brand',
   mixins: [resToken],
+  props: ['showModel', 'index', 'sitem', 'spuCode'],
   data() {
     const validate_min_num = (rule, value, callback) => {
-      if (value === "") {
-        callback(new Error("起订量不能为空!"));
-      } else if (value === "0") {
-        callback(new Error("起订量不能为零!"));
+      if (value === '') {
+        callback(new Error('起订量不能为空!'))
+      } else if (value === '0') {
+        callback(new Error('起订量不能为零!'))
       } else {
-        callback();
+        callback()
       }
-    };
+    }
     const validate_sale_price = (rule, value, callback) => {
-      if (value === "") {
-        callback(new Error("售价不能为空!"));
+      if (value === '') {
+        callback(new Error('售价不能为空!'))
       } else {
-        callback();
+        callback()
       }
-    };
+    }
     const validate_market_price = (rule, value, callback) => {
-      if (value === "") {
-        callback(new Error("市场价不能为空!"));
+      if (value === '') {
+        callback(new Error('市场价不能为空!'))
       } else {
-        callback();
+        callback()
       }
-    };
+    }
     return {
       loading: false,
-      title: "",
+      title: '',
       showModelThis: this.showModel,
       ruleForm: {
-        id: "",
-        index: "-1",
-        min_num: "0",
-        sale_price: "0",
-        market_price: "0",
-        market_platform: "",
-        new_sale_price: "",
-        status: "1",
-        is_del: "0",
+        id: '',
+        index: '-1',
+        min_num: '0',
+        sale_price: '0',
+        market_price: '0',
+        market_platform: '',
+        new_sale_price: '',
+        status: '1',
+        is_del: '0'
       },
       rulesThis: this.rules,
       search_loading: false,
@@ -166,68 +169,68 @@ export default {
           {
             required: true,
             validator: validate_min_num,
-            trigger: "blur",
-          },
+            trigger: 'blur'
+          }
         ],
         sale_price: [
           {
             required: true,
             validator: validate_sale_price,
-            trigger: "blur",
-          },
+            trigger: 'blur'
+          }
         ],
         market_price: [
           {
             required: true,
-            type: "number",
+            type: 'number',
             validator: validate_market_price,
-            trigger: "blur",
-          },
+            trigger: 'blur'
+          }
         ],
         market_platform: [
-          { required: true, message: "对比平台不能为空", trigger: "blur" },
+          { required: true, message: '对比平台不能为空', trigger: 'blur' }
         ],
         status: [
-          { required: true, message: "请选择使用状态", trigger: "change" },
-        ],
-      },
-    };
+          { required: true, message: '请选择使用状态', trigger: 'change' }
+        ]
+      }
+    }
   },
   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;
-      await this.resetForm();
-      this.rulesThis = this.rules;
-      if (this.index + "" === "-1") {
-        this.title = "添加销售成本阶梯";
+      this.loading = true
+      await this.resetForm()
+      this.rulesThis = this.rules
+      if (this.index + '' === '-1') {
+        this.title = '添加销售成本阶梯'
       } else {
-        this.title = "修改销售成本阶梯";
+        this.title = '修改销售成本阶梯'
       }
 
-      this.loading = false;
+      this.loading = false
     },
     async resetForm() {
       // 重置
-      await this.$nextTick(async () => {
+      await this.$nextTick(async() => {
         if (this.$refs.ruleForm) {
-          this.$refs.ruleForm.resetFields();
-          this.$refs.ruleForm.clearValidate();
-          await this.resetFormData();
+          this.$refs.ruleForm.resetFields()
+          this.$refs.ruleForm.clearValidate()
+          await this.resetFormData()
         }
-      });
+      })
     },
     async resetFormData() {
       const {
@@ -237,78 +240,78 @@ export default {
         market_price,
         market_platform,
         status,
-        is_del,
-      } = this.sitem;
+        is_del
+      } = this.sitem
       this.ruleForm = {
-        id: id || "",
+        id: id || '',
         index: this.index,
-        min_num: min_num || "0",
-        sale_price: sale_price || "0",
-        market_price: market_price || "0",
-        market_platform: market_platform || "",
-        new_sale_price: "",
-        status: status || "1",
-        is_del: is_del || "0",
-      };
-      await this.get_new(this.ruleForm.min_num);
+        min_num: min_num || '0',
+        sale_price: sale_price || '0',
+        market_price: market_price || '0',
+        market_platform: market_platform || '',
+        new_sale_price: '',
+        status: status || '1',
+        is_del: is_del || '0'
+      }
+      await this.get_new(this.ruleForm.min_num)
     },
 
     async submitForm() {
-      await this.$refs.ruleForm.validate(async (valid) => {
+      await this.$refs.ruleForm.validate(async(valid) => {
         if (valid) {
-          this.showModelThis = false;
+          this.showModelThis = false
           // 刷新
-          this.$emit("refresh", this.ruleForm);
+          this.$emit('refresh', this.ruleForm)
         } else {
-          console.log(this.ruleForm);
-          console.log("error submit!!");
-          return false;
+          console.log(this.ruleForm)
+          console.log('error submit!!')
+          return false
         }
-      });
+      })
     },
     async min_num_change(e) {
-      this.ruleForm.min_num = e + "";
-      this.$refs.ruleForm.validateField("min_num");
-      await this.get_new(this.ruleForm.min_num);
+      this.ruleForm.min_num = e + ''
+      this.$refs.ruleForm.validateField('min_num')
+      await this.get_new(this.ruleForm.min_num)
     },
     async get_new(min_num) {
       if (!this.search_loading) {
-        if (min_num === "" || min_num === "0") {
-          this.ruleForm.new_sale_price = "0";
+        if (min_num === '' || min_num === '0') {
+          this.ruleForm.new_sale_price = '0'
         } else {
-          this.search_loading = true;
-          let { code, data, message } = await asyncRequest.goodupprice({
+          this.search_loading = true
+          const { code, data, message } = await asyncRequest.goodupprice({
             min_num: min_num,
-            spuCode: this.spuCode,
-          });
-          this.search_loading = false;
+            spuCode: this.spuCode
+          })
+          this.search_loading = false
           if (code === 0) {
-            const { sale_price } = data;
-            this.ruleForm.new_sale_price = sale_price;
+            const { sale_price } = data
+            this.ruleForm.new_sale_price = sale_price
           } else if (code >= 100 && code <= 104) {
-            await this.logout();
+            await this.logout()
           } else if (code == 1010) {
-            this.ruleForm.new_sale_price = "0";
+            this.ruleForm.new_sale_price = '0'
           } else {
-            this.$message.warning(message);
+            this.$message.warning(message)
           }
         }
       }
     },
     sale_price_change(e) {
-      this.ruleForm.sale_price = e;
-      this.$refs.ruleForm.validateField("sale_price");
+      this.ruleForm.sale_price = e
+      this.$refs.ruleForm.validateField('sale_price')
     },
     market_price_change(e) {
-      this.ruleForm.market_price = e;
-      this.$refs.ruleForm.validateField("market_price");
+      this.ruleForm.market_price = e
+      this.$refs.ruleForm.validateField('market_price')
     },
     reschange(e) {
-      this.ruleForm.price = e;
-      this.$refs.ruleForm.validateField("price");
-    },
-  },
-};
+      this.ruleForm.price = e
+      this.$refs.ruleForm.validateField('price')
+    }
+  }
+}
 </script>
 
    <style lang="scss" scoped>

+ 2 - 2
src/views/login/index.vue

@@ -11,7 +11,7 @@
       >
         <div class="title-container">
           <h3 class="title">
-            采销bate 3.0公测版
+            采销365
             <div style="font-size: 20px; margin-top: 5px">{{ ver }}</div>
           </h3>
         </div>
@@ -180,7 +180,7 @@ export default {
       loginBeianUrl: urlConfig.loginBeianUrl,
       loginForm: {
         username: '',
-        password: 'dingding123',
+        password: '',
         code: ''
       },
       loginRules: {

+ 23 - 22
src/views/stock/survey/index.vue

@@ -1,8 +1,8 @@
-<template>
+s<template>
   <div class="stockWarning pagePadding">
     <div v-if="powers.some((i) => i == '001')">
       <div style="width: 100%">
-        <el-row style="padding: 15px 0 0 0px">
+        <el-row style="padding: 26px 0 0 0px">
           <!-- <el-col :span="12" style="width: 290px; margin-right: 10px">
             <search-work-company
               :value="parmValue.companyNo"
@@ -23,7 +23,7 @@
               @searchChange="selectSupplier"
             />
           </el-col> -->
-          <el-col :span="12" style="width: 240px">
+          <el-col :span="12" style="width: 400px;margin-right: 10px;">
             <search-stock
               :isDetail="true"
               :size="searchSize"
@@ -37,7 +37,25 @@
             />
           </el-col>
 
-          <el-col :span="12" style="width: 300px; margin: 0px 10px">
+          <el-col :span="6" style="width: 160px">
+            <el-select
+              placeholder="商品类型"
+              clearable
+              size="mini"
+              v-model="parmValue.is_stock"
+              @change="
+                pageInfo.curr = 1;
+                parmValue.page = 1;
+                stockList();
+                searchList();
+              "
+            >
+              <el-option value="1" label="库存品" />
+              <el-option value="0" label="其他商品" />
+            </el-select>
+          </el-col>
+
+          <el-col :span="12" style="width: 360px; margin: 0px 10px">
             <el-input
               size="mini"
               placeholder="关键字"
@@ -99,23 +117,6 @@
               "
             />
           </el-col> -->
-          <el-col :span="12" style="width: 290px; margin-right: 10px">
-            <el-select
-              placeholder="是否库存品"
-              clearable
-              size="mini"
-              v-model="parmValue.is_stock"
-              @change="
-                pageInfo.curr = 1;
-                parmValue.page = 1;
-                stockList();
-                searchList();
-              "
-            >
-              <el-option value="1" label="是" />
-              <el-option value="0" label="否" />
-            </el-select>
-          </el-col>
         </el-row>
       </div>
 
@@ -527,7 +528,7 @@ export default {
 </script>
 <style lang="scss" scoped>
 /deep/.el-input {
-  margin-bottom: 10px;
+  // margin-bottom: 10px;
 }
 
 .card {

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