Browse Source

添加接口地址字段

xiaodai2022 2 years ago
parent
commit
40cadc7f06

+ 146 - 131
src/views/supplierSellOut/supplierReturnWorkOrder/index.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="sellReturn pagePadding">
-    <div v-if=" powers.some((i) => i == '001')">
+    <div v-if="powers.some((i) => i == '001')">
       <ex-table
         v-loading="loading"
         :table="table"
@@ -26,46 +26,62 @@
           <div style="width: 100%">
             <el-row style="padding: 0 0 0 80px">
               <el-col :span="24">
-              <el-col :span="4" style="margin-right:10px" >
-                <el-input v-model="parmValue.returnCode"  placeholder="售后退货单号" size="mini" clearable @change="pageInfo.curr=1;parmValue.page=1;searchList()" />
-              </el-col>
+                <el-col :span="4" style="margin-right: 10px">
+                  <el-input
+                    v-model="parmValue.returnCode"
+                    placeholder="售后退货单号"
+                    size="mini"
+                    clearable
+                    @change="
+                      pageInfo.curr = 1;
+                      parmValue.page = 1;
+                      searchList();
+                    "
+                  />
+                </el-col>
 
-              <el-col :span="4" style="margin-right:10px">
-                <el-select style="width:100%" placeholder="仓库类型" size="mini" clearable v-model="parmValue.type" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
-                  <el-option label="销售仓" value="1" />
-                  <el-option label="次品仓" value="2" />
-                </el-select>
-              </el-col>
+                <el-col :span="4" style="margin-right: 10px">
+                  <el-select
+                    style="width: 100%"
+                    placeholder="仓库类型"
+                    size="mini"
+                    clearable
+                    v-model="parmValue.type"
+                    @change="
+                      pageInfo.curr = 1;
+                      parmValue.page = 1;
+                      searchList();
+                    "
+                  >
+                    <el-option label="销售仓" value="1" />
+                    <el-option label="次品仓" value="2" />
+                  </el-select>
+                </el-col>
 
+                <el-col :span="4" style="margin-left: 10px">
+                  <el-select
+                    :size="searchSize"
+                    v-model="parmValue.order_type"
+                    filterable
+                    clearable
+                    placeholder="商品类型"
+                    style="width: 100%"
+                    @change="
+                      pageInfo.curr = 1;
+                      parmValue.page = 1;
+                      searchList();
+                    "
+                  >
+                    <el-option
+                      v-for="item in xs_order_type_options"
+                      :key="'orderstatus' + item.id"
+                      :label="item.label"
+                      :value="item.id"
+                    />
+                  </el-select>
+                </el-col>
 
-              <el-col :span="4" style="margin-left:10px">
-                <el-select
-                  :size="searchSize"
-                  v-model="parmValue.order_type"
-                  filterable
-                  clearable
-                  placeholder="商品类型"
-                  style="width: 100%"
-                  @change="
-                    pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();
-                  "
-                >
-                  <el-option
-                    v-for="item in xs_order_type_options"
-                    :key="'orderstatus' + item.id"
-                    :label="item.label"
-                    :value="item.id"
-                  />
-                </el-select>
-              </el-col>
-              
-               <el-col
-                  :span="4"
-                  class="fr"
-                  style="width: 66px; padding: 0 0 0 10px"
-                >
+                <el-col :span="4" class="fr" style="width: 66px; padding: 0 0 0 10px">
                   <el-button
                     type="warning"
                     class="fr"
@@ -100,76 +116,39 @@
           ></el-tag>
         </template>
 
-        <template #returnWsm="{scope}">
-          <el-popover placement="top" width="360" trigger="hover">
-             <i class="el-icon-warning-outline" slot="reference"></i>
-             <ul>
-               <li><h3>退货仓库</h3></li>
-               <li>
-                 <span>编号:</span
-                 ><span>{{ scope.row.return_wsm_code }}</span>
-               </li>
-               <li>
-                 <span>名称:</span
-                 ><span>{{ scope.row.return_wsm_name}}</span>
-               </li>
-               <li>
-                 <span>负责人:</span
-                 ><span>{{ scope.row.return_contactor_name}}</span>
-               </li>
-               <li>
-                 <span>供应商编码:</span
-                 ><span>{{ scope.row.return_supplierNo }}</span>
-               </li>
-               <li>
-                 <span>供应商名称:</span
-                 ><span>{{ scope.row.return_supplierName }}</span>
-               </li>
-             </ul>
-           </el-popover>
-           <span>{{ scope.row.return_wsm_name }}</span>
-        </template>
-
-        <template #order_type="{scope}">
-          <el-tag size="mini">{{(xs_order_type_options.find(({id}) => id === scope.row.order_type) || {})?.label || '--'}}</el-tag>
-        </template>
-
-        <template #stock_type="{scope}">
-          <el-tag size="mini">{{scope.row.type === '1' ? '销售仓' : '次品仓'}}</el-tag>
-        </template>
-
-        <template #sendWsm="{scope}">
+        <template #returnWsm="{ scope }">
           <el-popover placement="top" width="360" trigger="hover">
             <i class="el-icon-warning-outline" slot="reference"></i>
-             <ul>
-               <li><h3>退货仓库</h3></li>
-               <li>
-                 <span>编号:</span
-                 ><span>{{ scope.row.send_wsm_code }}</span>
-               </li>
-               <li>
-                 <span>名称:</span
-                 ><span>{{ scope.row.send_wsm_name}}</span>
-               </li>
-               <li>
-                 <span>负责人:</span
-                 ><span>{{ scope.row.send_contactor_name}}</span>
-               </li>
-               <li>
-                 <span>供应商编码:</span
-                 ><span>{{ scope.row.send_supplierNo }}</span>
-               </li>
-               <li>
-                 <span>供应商名称:</span
-                 ><span>{{ scope.row.send_supplierName }}</span>
-               </li>
-             </ul>
-           </el-popover>
-           <span>{{ scope.row.send_wsm_name }}</span>
+            <ul>
+              <li><h3>退货仓库</h3></li>
+              <li>
+                <span>编号:</span><span>{{ scope.row.return_wsm_code }}</span>
+              </li>
+              <li>
+                <span>名称:</span><span>{{ scope.row.return_wsm_name }}</span>
+              </li>
+              <li>
+                <span>负责人:</span><span>{{ scope.row.return_contactor_name }}</span>
+              </li>
+              <li>
+                <span>供应商编码:</span><span>{{ scope.row.return_supplierNo }}</span>
+              </li>
+              <li>
+                <span>供应商名称:</span><span>{{ scope.row.return_supplierName }}</span>
+              </li>
+            </ul>
+          </el-popover>
+          <span>{{ scope.row.return_wsm_name }}</span>
         </template>
 
-        <template #type="{scope}">
-          <el-tag size="mini">{{ scope.row.type === '1' ? '未发货退货' : '售后退货' }}</el-tag>
+        <template #order_type="{ scope }">
+          <el-tag
+            size="mini"
+            v-text="
+              (xs_order_type_options.find((id) => id === scope.row.order_type) || {})
+                .label || '--'
+            "
+          ></el-tag>
         </template>
 
         <template #order_source="{ scope }">
@@ -177,13 +156,47 @@
             :size="tablebtnSize"
             v-text="
               (
-              xs_order_source_options.find(
+                xs_order_source_options.find(
                   (item) => item.id == scope.row.order_source
                 ) || {}
               ).label || '--'
             "
           ></el-tag>
         </template>
+        <template #stock_type="{ scope }">
+          <el-tag size="mini">{{ scope.row.type === "1" ? "销售仓" : "次品仓" }}</el-tag>
+        </template>
+
+        <template #sendWsm="{ scope }">
+          <el-popover placement="top" width="360" trigger="hover">
+            <i class="el-icon-warning-outline" slot="reference"></i>
+            <ul>
+              <li><h3>退货仓库</h3></li>
+              <li>
+                <span>编号:</span><span>{{ scope.row.send_wsm_code }}</span>
+              </li>
+              <li>
+                <span>名称:</span><span>{{ scope.row.send_wsm_name }}</span>
+              </li>
+              <li>
+                <span>负责人:</span><span>{{ scope.row.send_contactor_name }}</span>
+              </li>
+              <li>
+                <span>供应商编码:</span><span>{{ scope.row.send_supplierNo }}</span>
+              </li>
+              <li>
+                <span>供应商名称:</span><span>{{ scope.row.send_supplierName }}</span>
+              </li>
+            </ul>
+          </el-popover>
+          <span>{{ scope.row.send_wsm_name }}</span>
+        </template>
+
+        <template #type="{ scope }">
+          <el-tag size="mini">{{
+            scope.row.type === "1" ? "未发货退货" : "售后退货"
+          }}</el-tag>
+        </template>
 
         <template #operation="{ scope }">
           <el-tooltip
@@ -206,17 +219,16 @@
   </div>
 </template>
 
-   <script>
+<script>
 import mixinPage from "@/mixins/elPaginationHandle";
 import resToken from "@/mixins/resToken";
 import asyncRequest from "@/apis/service/sellOut/returnGoodWorkOrder";
-import { xs_order_type_options ,xs_order_source_options} from "@/assets/js/statusList";
-import companyHelper from "@/mixins/companyHelper"
+import { xs_order_type_options, xs_order_source_options } from "@/assets/js/statusList";
+import companyHelper from "@/mixins/companyHelper";
 import urlConfig from "@/apis/url-config";
 import { mapGetters } from "vuex";
 import columns from "./columns";
 
-
 export default {
   name: "sellReturn",
   mixins: [mixinPage, resToken, companyHelper],
@@ -238,19 +250,19 @@ export default {
       fileUrl: urlConfig.baseURL,
       select: "outChildCode", //默认选择下拉框
       s_input: "", //搜索框内容
-      select_list:[],
+      select_list: [],
       sitem: null,
       // 状态
       statusOptions: [
         { value: "1", label: "待主流程收货" },
-        { value: "2", label: "主流程已收货" }
+        { value: "2", label: "主流程已收货" },
       ],
       loading: false,
       showModel: false,
       isDetail: false,
       modelId: 0,
       parmValue: {
-        returnCode:"",
+        returnCode: "",
         status: "", //节点状态
         page: 1, // 页码
         size: 15, // 每页显示条数
@@ -309,7 +321,7 @@ export default {
     async supplierChange(e) {
       const { code, label } = e;
       this.supplierNo = code ? [code] : [];
-      this.searchList()
+      this.searchList();
     },
     customer_code_change(e) {
       if (e && e.code) {
@@ -319,24 +331,26 @@ export default {
       }
       this.searchList();
     },
-    handleExport(){
+    handleExport() {
       if (!this.loading) {
         this.loading = true;
         let httpType = `aplication/zip`;
-  
+
         let model = JSON.parse(JSON.stringify(this.parmValue));
-        delete model['s_input']
+        delete model["s_input"];
 
         axios({
           method: "post",
-          url: this.fileUrl +  "/admin/child_export",
+          url: this.fileUrl + "/admin/child_export",
           responseType: "blob",
           data: {
             ...model,
             [this.select]: this.s_input,
-            customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : this.parmValue.customer_code,
+            customer_code: Array.isArray(this.parmValue.customer_code)
+              ? this.parmValue.customer_code[0]
+              : this.parmValue.customer_code,
             supplierNo: this.currentCompany,
-            noRelation: true
+            noRelation: true,
           },
           headers: {
             Accept: httpType,
@@ -373,8 +387,8 @@ export default {
           });
       }
     },
-    handleSelection(order){
-      const { list } = order
+    handleSelection(order) {
+      const { list } = order;
       this.select_list = list;
     },
     getRouter(toRouter, queryId) {
@@ -394,7 +408,7 @@ export default {
         model.preModel = JSON.stringify(routerModel);
 
         this.routeGoto(toRouter, model);
-      } 
+      }
     },
     restSearch() {
       this.s_input = ""; //清除输入框内容
@@ -403,7 +417,7 @@ export default {
       this.parmValue = {
         order_type: "",
         company_name: "", //申请人部门
-        good_code:"",
+        good_code: "",
         returnCode: "", //销售退货code
         orderCode: "", //销售订单code
         apply_name: "", //申请人
@@ -413,7 +427,7 @@ export default {
         page: 1, // 页码
         size: 15, // 每页显示条数
       };
-      
+
       // 表格 - 分页
       this.pageInfo = {
         size: 15,
@@ -438,7 +452,7 @@ export default {
         .then(async () => {
           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) {
@@ -468,15 +482,17 @@ export default {
       this.loading = true;
 
       let model = JSON.parse(JSON.stringify(this.parmValue));
-      delete model['s_input']
+      delete model["s_input"];
 
       const res = await asyncRequest.list({
         ...model,
         [this.select]: this.s_input,
         is_authority: "1",
-        customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : this.parmValue.customer_code,
+        customer_code: Array.isArray(this.parmValue.customer_code)
+          ? this.parmValue.customer_code[0]
+          : this.parmValue.customer_code,
         supplierNo: this.currentCompany,
-        noRelation: true
+        noRelation: true,
       });
 
       if (res && res.code === 0 && res.data) {
@@ -504,7 +520,7 @@ export default {
     company_idsearchChange(e) {
       const { code } = e;
       this.parmValue.companyNo = code || "";
-      this.searchList()
+      this.searchList();
     },
 
     // 时间
@@ -527,8 +543,7 @@ export default {
   },
 };
 </script>
-   <style lang="scss" scoped>
+<style lang="scss" scoped>
 .sellReturn {
 }
 </style>
-   

+ 17 - 0
src/views/system/menuOperator/addEdit.vue

@@ -93,6 +93,15 @@
                 <template slot="prepend">views/</template>
               </el-input>
             </el-form-item>
+            <el-form-item v-if="level === 2" label="接口地址:" prop="menu_api">
+              <el-input
+                v-model="ruleForm.menu_api"
+                :disabled="isDetail"
+                maxlength="100"
+                placeholder="页面对应的接口地址;例如:admin/cgdlist"
+              >
+              </el-input>
+            </el-form-item>
             <el-row>
               <el-col :span="12">
                 <el-form-item label="状态:" prop="is_show">
@@ -249,6 +258,7 @@ export default {
             message: "请输入页面组件路径",
             trigger: "blur",
           },
+
           {
             min: 1,
             max: 100,
@@ -256,6 +266,7 @@ export default {
             trigger: "blur",
           },
         ],
+
         weight: [
           {
             required: true,
@@ -376,6 +387,7 @@ export default {
         action_code,
         is_display,
         level,
+        menu_api,
       } = this.formData;
 
       if (this.level !== 3) {
@@ -388,6 +400,7 @@ export default {
           img: menu_img + "", // 图标(导航图标)
           route: menu_route + "", // 路由
           component: this.level === 1 ? "" : menu_url + "", // 页面组件
+          menu_api: this.level === 1 ? "" : menu_api + "",
           menuCategory: 1 + "", // 菜单类别(1.导航菜单 2.按钮)
           type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
           is_show: is_show + "", // 状态(1启用 0禁用)
@@ -407,6 +420,7 @@ export default {
           img: "", // 图标(导航图标)
           route: "", // 路由
           component: "", // 页面组件
+          menu_api: "",
           menuCategory: 2 + "", // 菜单类别(1.导航菜单 2.按钮)
           type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
           is_show: status + "", // 状态(1启用 0禁用)
@@ -441,6 +455,7 @@ export default {
         img: "", // 图标(导航图标)
         route: "", // 路由
         component: "", // 页面组件
+        menu_api: "",
         menuCategory: this.level < 3 ? 1 : 2, // 菜单类别(1.导航菜单 2.按钮)
         type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
         is_show: "1", // 状态(1启用 0禁用)
@@ -471,6 +486,7 @@ export default {
             is_display,
             weight,
             component,
+            menu_api,
             code,
             level,
           } = this.ruleForm;
@@ -487,6 +503,7 @@ export default {
             route: route,
             is_display: is_display,
             url: component,
+            menu_api: menu_api,
             action_code: code,
             status: is_show,
             level,