Ver código fonte

暂存查看其他分支

xiaodai2022 2 anos atrás
pai
commit
0b200830d4

+ 11 - 12
src/config/env.development.js

@@ -1,22 +1,21 @@
-// 本地
+// 生产环境
 module.exports = {
-  title: "采销平台",
-  baseUrl: "http://localhost:8080",
+  title: '采销平台',
+  baseUrl: 'http://wx.wxhr.sit.futurelab.tv',
   api: {
-    userApi: 'http://stockinv.test241.wanyuhengtong.com/',
     baseApi: 'http://stocknew.test241.wanyuhengtong.com/',
   },
-  webUrl: "http://share.sitw.wanyuhengtong.com/#/test-good-share?id=",
-  fileURL: `https://api2.edusit.zretchome.com`,
-  shareWebUrl: "http://ss.test241.wanyuhengtong.com/?prod=0&outCode=",
-  appId: "wx5ac3a2c2d72b6f26",
+  webUrl:'http://project.web.caixiao365.com/#/good-share?id=',
+  fileURL: `https://api2.edu.futurelab.tv`,
+  shareWebUrl:'http://post.web.caixiao365.com/?prod=1&outCode=',
+  appId: 'wx5ac3a2c2d72b6f26',
   ding: {
     //企业id
     CorpId: "dingc78fa4301e1a424a35c2f4657eb6378f",
     //应用凭证
-    AgentId: "1324690581",
+    AgentId:"1324690581" 
   },
-  loginTitle: "万宇恒通",
-  loginBeian: "京ICP备2020033956号-1",
+  loginTitle: "",
+  loginBeian: "京ICP备2022033072号-1",
   loginBeianUrl: "https://beian.miit.gov.cn/",
-};
+}

+ 45 - 1
src/utils/validate.js

@@ -516,13 +516,57 @@ export function hasSpace(s) {
   const str2 = s.replace(/[\r\n]/g, "");
   return !(str2 === s);
 }
+function com1(str, arr) {
+  let s = (arr.find((si) => si.key === str)|| {}).value  || str;
+  return s;
+}
+function com2(str, arr) {
+  console.log(str);
+  console.log(arr);
+  let s = "";
+  for (let i = 0; i < str.length; i++) {
+    console.log((arr.find((si) => si.key === str[i])|| {}).value  || str[i] );
+    s += (arr.find((si) => si.key === str[i])|| {}).value  || str[i];
+  }
+  return s;
+}
+
 //营业执照成立日期大写转小写
 export function invTime(s) {
+  const option = [
+    { key: "一", value: "1" },
+    { key: "二", value: "2" },
+    { key: "三", value: "3" },
+    { key: "四", value: "4" },
+    { key: "五", value: "5" },
+    { key: "六", value: "6" },
+    { key: "七", value: "7" },
+    { key: "八", value: "8" },
+    { key: "九", value: "9" },
+   
+  ];
+  const year = [
+    { key: "0", value: "0" },
+    { key: "零", value: "0" },
+  ].concat(option);
+  const day1 = [ { key: "十", value: "10" }].concat(option);
+  const day2 = [{ key: "十", value: "1" }];
   let str = ["年", "月", "日"];
   let si = s.replace(/[\r\n]/g, "").replace(/\s/g, "");
+  let arr1 = "",
+    arr2 = "",
+    arr3 = "";
   for (let i = 0; i < str.length; i++) {
     si = si.replace(str[i], i == 2 ? "" : "-");
   }
   let arr = si.split("-");
-  return arr;
+  if (arr.length !== 3) {
+    return "";
+  } else {
+    arr1 = com2(arr[0], year);
+    arr2 = arr[1].length > 1 ? com2(arr[1], year.concat(day2)) : com1(arr[1], day1);
+    arr3 = arr[2].length > 1 ? com2(arr[2], year.concat(day2)) : com1(arr[1], day1);
+    return `${arr1 + "-" + arr2 + "-" + arr3}`;
+  }
 }
+

+ 2 - 2
src/views/serviceParam/supplier/components/addEdit.vue

@@ -443,14 +443,14 @@ export default {
           scope, //	经营范围
           license_img, //	营业执照
         } = res.data;
-        console.log(invTime(registertime));
+        // console.log(invTime(registertime));
         this.ruleForm = {
           id: id || "",
           company: name || "", //公司名称
           type: nature || "", //	公司类型
           inv_code: registercode || "", //	纳税识别号
           inv_legaler: legaler || "", //	法人
-          inv_time: registertime || "", //注册日期
+          inv_time: invTime(registertime) || "", //注册日期
           inv_addr: addr || "", //注册地址
           inv_bank: "", //	银行
           inv_bankNo: "", //	银行账户

+ 82 - 41
src/views/serviceParam/terrace/addEdit.vue

@@ -5,7 +5,7 @@
     :center="true"
     align="left"
     top="18vh"
-    width="500px"
+    width="1040px"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
     element-loading-text="拼命加载中"
@@ -24,46 +24,87 @@
             label-width="80px"
             class="demo-ruleForm"
           >
-            <el-form-item label="平台名称" prop="platform_name">
-              <el-input
-                v-model="ruleForm.platform_name"
-                :disabled="id == '007'"
-                placeholder="平台名称"
-                maxlength="20"
-              />
-            </el-form-item>
-            <el-form-item label="平台类型" prop="use_type">
-              <el-select
-                v-model="ruleForm.use_type"
-                style="width: 100%"
-                :disabled="id == '007'"
-                placeholder="请选择平台类型"
-              >
-                <el-option
-                  v-for="item in use_type_options"
-                  :key="item.value"
-                  :label="item.label"
-                  :value="item.value"
-                >
-                </el-option>
-              </el-select>
-            </el-form-item>
-            <el-form-item label="对接平台" prop="platform_type">
-              <el-select
-                v-model="ruleForm.platform_type"
-                style="width: 100%"
-                :disabled="id == '007'"
-                placeholder="请选择对接平台"
-              >
-                <el-option
-                  v-for="item in options"
-                  :key="item.value"
-                  :label="item.label"
-                  :value="item.value"
-                >
-                </el-option>
-              </el-select>
-            </el-form-item>
+            <el-row>
+              <el-col :span="16">
+                <el-form-item label="平台名称" prop="platform_name">
+                  <el-input
+                    v-model="ruleForm.platform_name"
+                    :disabled="id == '007'"
+                    placeholder="平台名称"
+                    maxlength="20"
+                  />
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="平台类型" prop="use_type">
+                  <el-select
+                    v-model="ruleForm.use_type"
+                    style="width: 100%"
+                    :disabled="id == '007'"
+                    placeholder="请选择平台类型"
+                  >
+                    <el-option
+                      v-for="item in use_type_options"
+                      :key="item.value"
+                      :label="item.label"
+                      :value="item.value"
+                    >
+                    </el-option>
+                  </el-select> </el-form-item
+              ></el-col>
+              <el-col :span="8">
+                <el-form-item label="对接平台" prop="platform_type">
+                  <el-select
+                    v-model="ruleForm.platform_type"
+                    style="width: 100%"
+                    :disabled="id == '007'"
+                    placeholder="请选择对接平台"
+                  >
+                    <el-option
+                      v-for="item in options"
+                      :key="item.value"
+                      :label="item.label"
+                      :value="item.value"
+                    >
+                    </el-option>
+                  </el-select> </el-form-item
+              ></el-col>
+              <el-col :span="8">
+                <el-form-item label="对接平台" prop="platform_type">
+                  <el-select
+                    v-model="ruleForm.platform_type"
+                    style="width: 100%"
+                    :disabled="id == '007'"
+                    placeholder="请选择对接平台"
+                  >
+                    <el-option
+                      v-for="item in options"
+                      :key="item.value"
+                      :label="item.label"
+                      :value="item.value"
+                    >
+                    </el-option>
+                  </el-select> </el-form-item
+              ></el-col>
+              <el-col :span="8">
+                <el-form-item label="对接平台" prop="platform_type">
+                  <el-select
+                    v-model="ruleForm.platform_type"
+                    style="width: 100%"
+                    :disabled="id == '007'"
+                    placeholder="请选择对接平台"
+                  >
+                    <el-option
+                      v-for="item in options"
+                      :key="item.value"
+                      :label="item.label"
+                      :value="item.value"
+                    >
+                    </el-option>
+                  </el-select> </el-form-item
+              ></el-col>
+              <el-col :span="24"> 111</el-col>
+            </el-row>
           </el-form>
         </el-col>
         <el-col :span="24" style="text-align: right">