Bläddra i källkod

fix:非全等状态类型修改 number2string

snow 2 år sedan
förälder
incheckning
678a21fbd3

+ 1 - 1
src/components/globalComponents/logis-time-line/main.vue

@@ -14,7 +14,7 @@
       :finish-status="finishStatus"
       :process-status="processStatus"
     >
-      <div v-if="status && status !== '0'" class="show-post clear">
+      <div v-if="status && status + '' !== '0'" class="show-post clear">
         <img v-if="post_logo" :src="post_logo" alt="" class="fl" />
         <div v-if="post_name" class="fl">{{ post_name }}</div>
         <div class="fl" v-if="post_code">{{ post_code }}</div>

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

@@ -20,7 +20,7 @@
       :key="item.companyNo + index"
       :label="item.companyName"
       :value="item.companyNo"
-      :disabled="item.status !== '1'"
+      :disabled="item.status + '' !== '1'"
     >
     </el-option>
   </el-select>
@@ -115,4 +115,4 @@ export default {
 </script>
 
 <style>
-</style>
+</style>

+ 1 - 1
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="item.status + '' !== '1'"
     >
     </el-option>
   </el-select>

+ 1 - 1
src/views/goodStore/active/components/finance-exam-three-form.vue

@@ -343,7 +343,7 @@ export default {
       let isok = true;
       let newlist = [];
       list.forEach((e) => {
-        if (e.status !== "1" && e.status !== "2") {
+        if (e.status + '' !== "1" && e.status + '' !== "2") {
           isok = false;
         }
         let item = {

+ 3 - 3
src/views/interest/dataShare/addEdit.vue

@@ -108,7 +108,7 @@
                     :key="`togroupid` + item.id"
                     :label="item.title"
                     :value="item.id"
-                    :disabled="item.status !== '1'"
+                    :disabled="item.status + '' !== '1'"
                   />
                 </el-select>
               </ul>
@@ -170,7 +170,7 @@
                       :key="`togroupid` + item.id"
                       :label="item.title"
                       :value="item.id"
-                      :disabled="item.status !== '1'"
+                      :disabled="item.status + '' !== '1'"
                     />
                   </el-select>
                 </li>
@@ -307,7 +307,7 @@ export default {
       let { source_uid, source_data_group_id, data_group_id, uid } = result.data
       const { menu_ids, type } = result.data
 
-      const convert = (str) => str === '0' ? '' : str
+      const convert = (str) => str + '' === '0' ? '' : str
 
       source_data_group_id = convert(source_data_group_id)
       data_group_id = convert(data_group_id)

+ 4 - 4
src/views/interest/dataShare/index.vue

@@ -116,7 +116,7 @@
           <el-tag
             :size="tablebtnSize"
             :type="scope.row.status == '0' ? 'warning' : ''"
-          >{{scope.row.type === '1' ? '读写' : '只读'}}</el-tag>
+          >{{scope.row.type + '' === '1' ? '读写' : '只读'}}</el-tag>
         </template>
 
         <template #operation="{ scope }">
@@ -148,7 +148,7 @@
             ></i>
           </el-tooltip>
           <el-tooltip
-            v-if="powers.some((i) => i == '004') && scope.row.status === '0'"
+            v-if="powers.some((i) => i == '004') && scope.row.status + '' === '0'"
             effect="dark"
             content="启用"
             placement="top"
@@ -340,7 +340,7 @@ export default {
      * @param {String} status 0-禁用 1-启用
      */
     async changeStatus(id, status) {
-      await this.$confirm(`确定要改为${status === "1" ? "禁用" : "启用"}?`, {
+      await this.$confirm(`确定要改为${status + '' === "1" ? "禁用" : "启用"}?`, {
         confirmButtonText: "确定",
         cancelButtonText: "取消",
         type: "warning"
@@ -349,7 +349,7 @@ export default {
           this.loading = true;
           const model = {
             id: [id],
-            status: status === "1" ? "0" : "1"
+            status: status + '' === "1" ? "0" : "1"
           };
           const res = await asyncRequest.status(model);
           if (res && res.code === 0) {

+ 1 - 1
src/views/orderEntry/orderConfirm/index.vue

@@ -988,7 +988,7 @@ export default {
         } else {
           this.subGoodData = data;
           const { platform_name } = data;
-          if (this.status !== "2") {
+          if (this.status + '' !== "2") {
             this.sitem.platform_name = platform_name + "客户";
           }
           if (this.platform_id) {

+ 1 - 1
src/views/orderEntry/orderEnter/index.vue

@@ -193,7 +193,7 @@
             effect="dark"
             content="详情"
             placement="top"
-            v-if="powers.some((i) => i == '007') && scope.row.status !== '5'"
+            v-if="powers.some((i) => i == '007') && scope.row.status + '' !== '5'"
           >
             <i
               class="el-icon-view tb-icon"

+ 1 - 1
src/views/purchaseIn/purchaseOrder/index.vue

@@ -475,7 +475,7 @@ export default {
         list = [],
         errorList = [];
       this.changeList.forEach((e) => {
-        if (e.status !== "0") {
+        if (e.status + '' !== "0") {
           isok = false;
         }
         if (

+ 7 - 7
src/views/purchaseIn/wsmInOrder/components/wsm-in-order-check-form.vue

@@ -25,7 +25,7 @@
           <el-form-item label="正常入库数量" prop="wsm_num">
             <el-input
               placeholder="正常入库数量"
-              :disabled="status !== '2'"
+              :disabled="status + '' !== '2'"
               v-model="ruleForm.wsm_num"
               maxlength="100"
             >
@@ -36,7 +36,7 @@
           <el-form-item label="异常补发数量" prop="reissue_num">
             <el-input
               placeholder="异常补发数量"
-              :disabled="status !== '2'"
+              :disabled="status + '' !== '2'"
               v-model="ruleForm.reissue_num"
               maxlength="100"
             >
@@ -47,7 +47,7 @@
           <el-form-item label="异常退货数量" prop="return_num">
             <el-input
               placeholder="异常退货数量"
-              :disabled="status !== '2'"
+              :disabled="status + '' !== '2'"
               v-model="ruleForm.return_num"
               maxlength="100"
             >
@@ -58,7 +58,7 @@
           <el-form-item label="收件联系人" prop="contactor">
             <el-input
               placeholder="收件联系人"
-              :disabled="status !== '2'"
+              :disabled="status + '' !== '2'"
               v-model="ruleForm.contactor"
               maxlength="100"
             >
@@ -67,7 +67,7 @@
           <el-form-item label="收件联系电话" prop="mobile">
             <el-input
               placeholder="收件联系电话"
-              :disabled="status !== '2'"
+              :disabled="status + '' !== '2'"
               v-model="ruleForm.mobile"
               maxlength="100"
             >
@@ -79,7 +79,7 @@
           <el-form-item label="收件地址" prop="addr">
             <el-input
               placeholder="收件地址"
-              :disabled="status !== '2'"
+              :disabled="status + '' !== '2'"
               v-model="ruleForm.addr"
               maxlength="250"
             />
@@ -87,7 +87,7 @@
           <el-form-item label="审核备注" prop="error_remark">
             <el-input
               placeholder="审核备注"
-              :disabled="status !== '2'"
+              :disabled="status + '' !== '2'"
               v-model="ruleForm.error_remark"
               maxlength="250"
             />

+ 1 - 1
src/views/purchaseIn/wsmInOrder/detail.vue

@@ -166,7 +166,7 @@
         <el-tab-pane
           label="物流进度"
           name="3"
-          v-if="newTime !== '' && sitem && sitem.sendtype == '1' && status !== '0'"
+          v-if="newTime !== '' && sitem && sitem.sendtype == '1' && status + '' !== '0'"
         >
           <logis-time-line v-if="newTime !== ''" :orderCode="sitem.post_code" />
         </el-tab-pane>

+ 2 - 2
src/views/reportQuery/financeReport/history-data.vue

@@ -70,7 +70,7 @@
           content="申请下载"
           placement="top"
           v-if="
-            scope.row.status !== '1'
+            scope.row.status + '' !== '1'
           "
         >
           <i class="el-icon-thumb tb-icon" @click="setStatus(scope.row.id)"></i>
@@ -253,7 +253,7 @@ export default {
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;
         this.tableData.forEach((v) => {
-          if (v.status !== "3") {
+          if (v.status + '' !== "3") {
             v.remark = "";
           }
         });

+ 1 - 1
src/views/reportQuery/saleReportOrder/history-data.vue

@@ -253,7 +253,7 @@ export default {
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;
         this.tableData.forEach((v) => {
-          if (v.status !== "3") {
+          if (v.status + '' !== "3") {
             v.remark = "";
           }
         });

+ 1 - 1
src/views/reportQuery/stockReport/history-data.vue

@@ -253,7 +253,7 @@ export default {
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;
         this.tableData.forEach((v) => {
-          if (v.status !== "3") {
+          if (v.status + '' !== "3") {
             v.remark = "";
           }
         });

+ 1 - 1
src/views/sellOut/project/components/grossForm.vue

@@ -30,7 +30,7 @@
       <el-col
         :span="12"
         style="text-align: right"
-        v-if="(status !== '5' || status !== '6') && powers.some((i) => i == '060')"
+        v-if="(status + '' !== '5' || status + '' !== '6') && powers.some((i) => i == '060')"
       >
         <el-button type="primary" :size="'mini'" @click="submitForm">保 存 </el-button>
       </el-col>

+ 1 - 1
src/views/sellOut/sellAfterApply/components/purchase_exam.vue

@@ -222,7 +222,7 @@ export default {
     statusChange() {
       this.rulesThis.is_th[0].required =
         this.ruleForm.status + '' === "1" && this.is_receive + '' === "1";
-      this.rulesThis.remark[0].required = this.ruleForm.status !== "1";
+      this.rulesThis.remark[0].required = this.ruleForm.status + '' !== "1";
     },
     async resetForm() {
       // 重置

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

@@ -89,7 +89,7 @@
                       v-for="(si, sii) in tableData"
                       :key="'table' + sii"
                       :label="si.id"
-                      :disabled="si.status !== '1' || ruleForm.id === si.id"
+                      :disabled="si.status + '' !== '1' || ruleForm.id === si.id"
                       >{{ si.status_name }}</el-checkbox
                     >
                   </el-checkbox-group>

+ 2 - 2
src/views/stock/allot/detail.vue

@@ -10,7 +10,7 @@
           plain
           class="fr"
           :size="'mini'"
-          v-if="status !== '' && status !== '5' && powers.some((i) => i == '015')"
+          v-if="status + '' !== '' && status + '' !== '5' && powers.some((i) => i == '015')"
         >作废该条信息</el-button>
       </div>
 
@@ -75,7 +75,7 @@
             <el-collapse-item
               title="出库方发货"
               name="2"
-              v-if="status !== '' && status !== '0' && status !== '1'"
+              v-if="status !== '' && status + '' !== '0' && status + '' !== '1'"
             >
               <go-stock-audit
                 :newTime="newTime"

+ 1 - 1
src/views/youzan/othTransferOrderLog/good_detail.vue

@@ -181,7 +181,7 @@
         private_field.some((item) => item == '2') &&
         nakelist &&
         nakelist.length > 0 &&
-        status !== '0'
+        status + '' !== '0'
       "
       :sitem="sitem"
       :columns="sale_listCol"

+ 1 - 1
src/views/youzan/othgoodsOnline/components/online-exam-form.vue

@@ -248,7 +248,7 @@
           </el-table-column>
         </el-table>
       </el-col>
-      <el-col :span="18" v-show="ruleForm.exam_status !== '1'">
+      <el-col :span="18" v-show="ruleForm.exam_status + '' !== '1'">
         <el-form-item label="审核备注" prop="reject_reason">
           <el-input
             type="textarea"

+ 1 - 1
src/views/youzan/othgoodsOnline/detail.vue

@@ -135,7 +135,7 @@
                   private_field.some((item) => item == '2') &&
                   nakelist &&
                   nakelist.length > 0 &&
-                  status !== '0'
+                  status + '' !== '0'
                 "
                 :sitem="sitem"
                 :columns="sale_listCol"

+ 1 - 1
src/views/youzan/othgoodsOnline/index.vue

@@ -245,7 +245,7 @@
             ></i>
           </el-tooltip>
           <el-tooltip
-            v-if="powers.some((i) => i == '079') && scope.row.status !== '8'"
+            v-if="powers.some((i) => i == '079') && scope.row.status + '' !== '8'"
             effect="dark"
             content="下线商品"
             placement="top"