add
This commit is contained in:
		
							parent
							
								
									072be0973a
								
							
						
					
					
						commit
						da75cc1813
					
				|  | @ -1,156 +1,636 @@ | |||
| <template> | ||||
|     <div> | ||||
|         <obj-modal class="obj-modal" ref="modal" labelWidth="100px" :modalCols="modalCols" :modalConfig="modalConfig" | ||||
|             :modalData="modalData" :modalHandles="modalHandles"> | ||||
|             <template slot="dialog__before"> | ||||
|                 <!-- <el-tabs v-model="currentPanel"> | ||||
|   <div> | ||||
|     <obj-modal | ||||
|       class="obj-modal" | ||||
|       ref="modal" | ||||
|       labelWidth="100px" | ||||
|       :modalCols="modalCols" | ||||
|       :modalConfig="modalConfig" | ||||
|       :modalData="modalData" | ||||
|       :modalHandles="modalHandles" | ||||
|     > | ||||
|       <template slot="dialog__before"> | ||||
|         <!-- <el-tabs v-model="currentPanel"> | ||||
|                     <el-tab-pane label="基础信息" name="基础信息"></el-tab-pane> | ||||
|                     <el-tab-pane label="销售信息" name="销售信息"></el-tab-pane> | ||||
|                     <el-tab-pane label="其他信息" name="其他信息"></el-tab-pane> | ||||
|                 </el-tabs> --> | ||||
|             </template> | ||||
|         </obj-modal> | ||||
|     </div> | ||||
|       </template> | ||||
|     </obj-modal> | ||||
|   </div> | ||||
| </template> | ||||
| <script> | ||||
| import { debounce, cloneDeep } from "lodash"; | ||||
| const BASE_DATA = { | ||||
|   calculateMethod: "按重量", | ||||
|   fareConfig: "全国包邮", | ||||
|   //为指定地区城市设置运费 | ||||
|   shippingTemplatesRegionList: [ | ||||
|     { | ||||
|       //默认运费,不限制城市 | ||||
|       cityCodes: "0", | ||||
|       //首重 | ||||
|       first: "", | ||||
|       //首重价格 | ||||
|       firstPrice: "", | ||||
|       //续重 | ||||
|       renewal: "", | ||||
|       //续重价格 | ||||
|       renewalPrice: "", | ||||
|     }, | ||||
|   ], | ||||
|   //追加 | ||||
|   shippingTemplatesRegionListAppend: [], | ||||
|   //指定包邮条件 | ||||
|   shippingTemplatesConditionList: [ | ||||
|     // { | ||||
|     //   cityCodes: "", | ||||
|     //   price: "", | ||||
|     //   number: "", | ||||
|     // }, | ||||
|   ], | ||||
| }; | ||||
| export default { | ||||
|     data() { | ||||
|         return { | ||||
|             currentPanel: "基础信息", | ||||
|             modalData: { | ||||
|             }, | ||||
|             modalConfig: { | ||||
|                 title: "添加运费模板", | ||||
|                 show: false, | ||||
|                 width: "1300px", | ||||
|                 fullscreen: true, | ||||
|             }, | ||||
|             fileList: [], //回显图片 | ||||
|             place: "", //场地 | ||||
|         }; | ||||
|   data() { | ||||
|     return { | ||||
|       currentPanel: "基础信息", | ||||
|       modalData: {}, | ||||
|       modalConfig: { | ||||
|         title: "添加运费模板", | ||||
|         show: false, | ||||
|         width: "1300px", | ||||
|         fullscreen: true, | ||||
|       }, | ||||
|       fileList: [], //回显图片 | ||||
|       place: "", //场地 | ||||
|     }; | ||||
|   }, | ||||
|   mounted() {}, | ||||
|   methods: { | ||||
|     toggle(e) { | ||||
|       if (this.modalConfig.show == false) { | ||||
|         this.modalConfig.show = true; | ||||
|       } else { | ||||
|         this.modalConfig.show = false; | ||||
|       } | ||||
|       if (e) { | ||||
|         console.log(e); | ||||
|         this.init(cloneDeep(e.row)); | ||||
|       } | ||||
|       return { | ||||
|         add: (item) => { | ||||
|           console.log(item); | ||||
|           this.$nextTick(() => { | ||||
|             this.modalData = BASE_DATA; | ||||
|           }); | ||||
|           this.isAdd = true; | ||||
|         }, | ||||
|         update: (row) => { | ||||
|           this.modalData = row; | ||||
|           this.isAdd = false; | ||||
|         }, | ||||
|       }; | ||||
|     }, | ||||
|     mounted() { }, | ||||
|     methods: { | ||||
|         toggle(e) { | ||||
|             if (this.modalConfig.show == false) { | ||||
|                 this.modalConfig.show = true; | ||||
|             } else { | ||||
|                 this.modalConfig.show = false; | ||||
|             } | ||||
|             if (e) { | ||||
|                 console.log(e); | ||||
|                 this.init(cloneDeep(e.row)); | ||||
|             } | ||||
|             return { | ||||
|                 add: (item) => { | ||||
|                     console.log(item); | ||||
|                     this.$nextTick(() => { | ||||
|                         this.modalData = { | ||||
|                         }; | ||||
|                     }); | ||||
|                     this.isAdd = true; | ||||
|     init(row) {}, | ||||
|   }, | ||||
|   computed: { | ||||
|     modalCols() { | ||||
|       return [ | ||||
|         { | ||||
|           label: "模板名称", | ||||
|           prop: "templateName", | ||||
|           type: "Input", | ||||
|           maxlength: "30", | ||||
|           placeholder: "请输入模板名称", | ||||
|           rules: { | ||||
|             required: true, | ||||
|             message: "请输入模板名称", | ||||
|             trigger: "blur,change", | ||||
|           }, | ||||
|         }, | ||||
|         { | ||||
|           label: "计价方式", | ||||
|           prop: "calculateMethod", | ||||
|           type: "jsx", | ||||
|           rules: { | ||||
|             required: true, | ||||
|             message: "请选择计价方式", | ||||
|             trigger: "blur", | ||||
|           }, | ||||
|           render: () => { | ||||
|             return ( | ||||
|               <el-radio-group v-model={this.modalData.calculateMethod}> | ||||
|                 <el-radio label="按重量">按重量</el-radio> | ||||
|                 <el-radio label="按件数">按件数</el-radio> | ||||
|               </el-radio-group> | ||||
|             ); | ||||
|           }, | ||||
|         }, | ||||
|         { | ||||
|           label: "运费配置", | ||||
|           prop: "fareConfig", | ||||
|           type: "jsx", | ||||
|           required: true, | ||||
|           rules: { | ||||
|             required: true, | ||||
|             message: "请选择计价方式", | ||||
|             trigger: "blur", | ||||
|           }, | ||||
|           render: () => { | ||||
|             return ( | ||||
|               <el-radio-group v-model={this.modalData.fareConfig}> | ||||
|                 <el-radio label="全国包邮">全国包邮</el-radio> | ||||
|                 <el-radio label="自定义运费">自定义运费</el-radio> | ||||
|               </el-radio-group> | ||||
|             ); | ||||
|           }, | ||||
|         }, | ||||
|         { | ||||
|           label: "自定义运费配置", | ||||
|           type: "jsx-out", | ||||
|           show: this.modalData.fareConfig == "自定义运费", | ||||
|           render: () => { | ||||
|             const tableCols = [ | ||||
|               { | ||||
|                 title: "运送到", | ||||
|                 width: "300px", | ||||
|                 field: "cityCodes", | ||||
|                 type: "jsx", | ||||
|                 render: ({ row }) => { | ||||
|                   const change = (e) => { | ||||
|                     console.log(e); | ||||
|                   }; | ||||
|                   return ( | ||||
|                     <el-cascader | ||||
|                       style="width:100%;" | ||||
|                       v-model={row.cityCodes} | ||||
|                       onChange={change} | ||||
|                       options={this.$api.mer_admin.getCityOptions()} | ||||
|                       show-all-levels={false} | ||||
|                       collapse-tags={true} | ||||
|                       props={{ | ||||
|                         props: { | ||||
|                           multiple: true, | ||||
|                           checkStrictly: false, | ||||
|                           emitPath: true, | ||||
|                           label: "name", | ||||
|                           value: "code", | ||||
|                         }, | ||||
|                       }} | ||||
|                       clearable | ||||
|                       filterable | ||||
|                     ></el-cascader> | ||||
|                   ); | ||||
|                 }, | ||||
|                 update: (row) => { | ||||
|                     this.modalData = row; | ||||
|                     this.isAdd = false; | ||||
|               }, | ||||
|               { | ||||
|                 title: "首重(kg)", | ||||
|                 field: "first", | ||||
|                 type: "jsx", | ||||
|                 render: ({ row }) => { | ||||
|                   return ( | ||||
|                     <el-input-number | ||||
|                       style="width:100%;" | ||||
|                       min={0} | ||||
|                       controls={false} | ||||
|                       precision={2} | ||||
|                       v-model={row.first} | ||||
|                     ></el-input-number> | ||||
|                   ); | ||||
|                 }, | ||||
|               }, | ||||
|               { | ||||
|                 title: "首费(元)", | ||||
|                 field: "firstPrice", | ||||
|                 type: "jsx", | ||||
|                 render: ({ row }) => { | ||||
|                   return ( | ||||
|                     <el-input-number | ||||
|                       style="width:100%;" | ||||
|                       min={0} | ||||
|                       controls={false} | ||||
|                       precision={2} | ||||
|                       v-model={row.firstPrice} | ||||
|                     ></el-input-number> | ||||
|                   ); | ||||
|                 }, | ||||
|               }, | ||||
|               { | ||||
|                 title: "续重(kg)", | ||||
|                 field: "renewal", | ||||
|                 type: "jsx", | ||||
|                 render: ({ row }) => { | ||||
|                   return ( | ||||
|                     <el-input-number | ||||
|                       style="width:100%;" | ||||
|                       min={0} | ||||
|                       controls={false} | ||||
|                       precision={2} | ||||
|                       v-model={row.renewal} | ||||
|                     ></el-input-number> | ||||
|                   ); | ||||
|                 }, | ||||
|               }, | ||||
|               { | ||||
|                 title: "续费(元)", | ||||
|                 field: "renewalPrice", | ||||
|                 type: "jsx", | ||||
|                 render: ({ row }) => { | ||||
|                   return ( | ||||
|                     <el-input-number | ||||
|                       style="width:100%;" | ||||
|                       min={0} | ||||
|                       max={row.firstPrice} | ||||
|                       controls={false} | ||||
|                       precision={2} | ||||
|                       v-model={row.renewalPrice} | ||||
|                     ></el-input-number> | ||||
|                   ); | ||||
|                 }, | ||||
|               }, | ||||
|               { | ||||
|                 title: "操作", | ||||
|                 type: "jsx", | ||||
|                 render: (e) => { | ||||
|                   const remove = () => { | ||||
|                     console.log(e); | ||||
|                     this.modalData.shippingTemplatesRegionListAppend.splice( | ||||
|                       e.rowIndex, | ||||
|                       1 | ||||
|                     ); | ||||
|                   }; | ||||
|                   const add = () => { | ||||
|                     console.log(e); | ||||
|                     this.modalData.shippingTemplatesRegionListAppend.splice( | ||||
|                       e.rowIndex + 1, | ||||
|                       0, | ||||
|                       { | ||||
|                         //默认运费,不限制城市 | ||||
|                         cityCodes: "", | ||||
|                         //首重 | ||||
|                         first: "", | ||||
|                         //首重价格 | ||||
|                         firstPrice: "", | ||||
|                         //续重 | ||||
|                         renewal: "", | ||||
|                         //续重价格 | ||||
|                         renewalPrice: "", | ||||
|                       } | ||||
|                     ); | ||||
|                   }; | ||||
|                   return ( | ||||
|                     <div> | ||||
|                       <el-button type="primary" size="mini" onClick={add}> | ||||
|                         向下添加 | ||||
|                       </el-button> | ||||
|                       <el-button type="danger" size="mini" onClick={remove}> | ||||
|                         删除 | ||||
|                       </el-button> | ||||
|                     </div> | ||||
|                   ); | ||||
|                 }, | ||||
|               }, | ||||
|             ]; | ||||
|             const addAreaFare = () => { | ||||
|               this.modalData.shippingTemplatesRegionListAppend.push({ | ||||
|                 //默认运费,不限制城市 | ||||
|                 cityCodes: "", | ||||
|                 //首重 | ||||
|                 first: "", | ||||
|                 //首重价格 | ||||
|                 firstPrice: "", | ||||
|                 //续重 | ||||
|                 renewal: "", | ||||
|                 //续重价格 | ||||
|                 renewalPrice: "", | ||||
|               }); | ||||
|             }; | ||||
|             return ( | ||||
|               <div> | ||||
|                 <div class="d-flex no-warp justify-start items-center"> | ||||
|                   <el-form-item | ||||
|                     prop="shippingTemplatesRegionList[0].first" | ||||
|                     rules={{ | ||||
|                       required: true, | ||||
|                       message: "请填写默认运费", | ||||
|                       trigger: "change", | ||||
|                     }} | ||||
|                     label="默认运费" | ||||
|                   > | ||||
|                     <el-input | ||||
|                       v-model={ | ||||
|                         this.modalData.shippingTemplatesRegionList[0].first | ||||
|                       } | ||||
|                     ></el-input> | ||||
|                   </el-form-item> | ||||
|                   <span style="transform:translateY(-12px);"> | ||||
|                      kg内  | ||||
|                   </span> | ||||
|                   <el-form-item | ||||
|                     label-width="0" | ||||
|                     prop="shippingTemplatesRegionList[0].firstPrice" | ||||
|                     rules={{ | ||||
|                       required: true, | ||||
|                       message: "请填写默认运费", | ||||
|                       trigger: "change", | ||||
|                     }} | ||||
|                     label="" | ||||
|                   > | ||||
|                     <el-input | ||||
|                       v-model={ | ||||
|                         this.modalData.shippingTemplatesRegionList[0].firstPrice | ||||
|                       } | ||||
|                     ></el-input> | ||||
|                   </el-form-item> | ||||
|                   <span style="transform:translateY(-12px);"> | ||||
|                      元,每增加  | ||||
|                   </span> | ||||
|                   <el-form-item | ||||
|                     label-width="0" | ||||
|                     prop="shippingTemplatesRegionList[0].renewal" | ||||
|                     rules={{ | ||||
|                       required: true, | ||||
|                       message: "请填写默认运费", | ||||
|                       trigger: "change", | ||||
|                     }} | ||||
|                     label="" | ||||
|                   > | ||||
|                     <el-input | ||||
|                       v-model={ | ||||
|                         this.modalData.shippingTemplatesRegionList[0].renewal | ||||
|                       } | ||||
|                     ></el-input> | ||||
|                   </el-form-item> | ||||
|                   <span style="transform:translateY(-12px);"> | ||||
|                      kg,增加运费  | ||||
|                   </span> | ||||
|                   <el-form-item | ||||
|                     label-width="0" | ||||
|                     prop="shippingTemplatesRegionList[0].renewalPrice" | ||||
|                     rules={{ | ||||
|                       required: true, | ||||
|                       message: "请填写默认运费", | ||||
|                       trigger: "change", | ||||
|                     }} | ||||
|                     label="" | ||||
|                   > | ||||
|                     <el-input | ||||
|                       v-model={ | ||||
|                         this.modalData.shippingTemplatesRegionList[0] | ||||
|                           .renewalPrice | ||||
|                       } | ||||
|                     ></el-input> | ||||
|                   </el-form-item> | ||||
|                   <span style="transform:translateY(-12px);"> | ||||
|                      元  | ||||
|                   </span> | ||||
|                 </div> | ||||
|                 <div> | ||||
|                   <obj-table-plus | ||||
|                     style="height:50vh;" | ||||
|                     enable-auto-query={false} | ||||
|                     v-model={this.modalData.shippingTemplatesRegionListAppend} | ||||
|                     tableCols={tableCols} | ||||
|                     isPagination={false} | ||||
|                   > | ||||
|                     <template slot="empty"> | ||||
|                       <el-button | ||||
|                         onClick={addAreaFare} | ||||
|                         type="text" | ||||
|                         icon="el-icon-plus" | ||||
|                       > | ||||
|                         为指定地区城市设置运费(除指定地区外,其余地区的运费按照“默认运费”) | ||||
|                       </el-button> | ||||
|                     </template> | ||||
|                   </obj-table-plus> | ||||
|                 </div> | ||||
|               </div> | ||||
|             ); | ||||
|           }, | ||||
|         }, | ||||
|         init(row) { }, | ||||
|     }, | ||||
|     computed: { | ||||
|         modalCols() { | ||||
|             return [ | ||||
|                 { | ||||
|                     label: "模板名称", | ||||
|                     prop: "templateName", | ||||
|                     required: true, | ||||
|                     type: "Input", | ||||
|                     maxlength:"30", | ||||
|                     placeholder: "请输入模板名称" | ||||
|         //指定包邮条件 | ||||
|         { | ||||
|           label: "", | ||||
|           prop: "", | ||||
|           type: "jsx-out", | ||||
|           show: this.modalData.fareConfig == "自定义运费", | ||||
|           render: () => { | ||||
|             const tableCols = [ | ||||
|               { | ||||
|                 title: "运送到", | ||||
|                 width: "300px", | ||||
|                 field: "cityCodes", | ||||
|                 type: "jsx", | ||||
|                 render: ({ row }) => { | ||||
|                   const change = (e) => { | ||||
|                     console.log(e); | ||||
|                   }; | ||||
|                   return ( | ||||
|                     <el-cascader | ||||
|                       style="width:100%;" | ||||
|                       v-model={row.cityCodes} | ||||
|                       onChange={change} | ||||
|                       options={this.$api.mer_admin.getCityOptions()} | ||||
|                       show-all-levels={false} | ||||
|                       collapse-tags={true} | ||||
|                       props={{ | ||||
|                         props: { | ||||
|                           multiple: true, | ||||
|                           checkStrictly: false, | ||||
|                           emitPath: true, | ||||
|                           label: "name", | ||||
|                           value: "code", | ||||
|                         }, | ||||
|                       }} | ||||
|                       clearable | ||||
|                       filterable | ||||
|                     ></el-cascader> | ||||
|                   ); | ||||
|                 }, | ||||
|                 { | ||||
|                     label: "计价方式", | ||||
|                     prop: "calculateMethod", | ||||
|                     type: "jsx", | ||||
|                     required: true, | ||||
|                     rules: { | ||||
|                         required: true, | ||||
|                         message: "请选择计价方式", | ||||
|                         trigger: "blur", | ||||
|                     }, | ||||
|                     render: () => { | ||||
|                         return ( | ||||
|                             <el-radio-group v-model={this.modalData.calculateMethod}> | ||||
|                                 <el-radio label="按重量">按重量</el-radio> | ||||
|                                 <el-radio label="按件数">按件数</el-radio> | ||||
|                             </el-radio-group> | ||||
|                         ); | ||||
|                     }, | ||||
|               }, | ||||
|               { | ||||
|                 title: "包邮条件", | ||||
|                 field: "conditions", | ||||
|                 type: "jsx", | ||||
|                 render: ({ row }) => { | ||||
|                   const _conditionMapper = { | ||||
|                     件数: ( | ||||
|                       <div> | ||||
|                         <el-input-number | ||||
|                           style="width:150px;" | ||||
|                           min={0} | ||||
|                           controls={false} | ||||
|                           precision={0} | ||||
|                           v-model={row.number} | ||||
|                         ></el-input-number> | ||||
|                         <span> 件包邮 </span> | ||||
|                       </div> | ||||
|                     ), | ||||
|                     金额: ( | ||||
|                       <div> | ||||
|                         <el-input-number | ||||
|                           style="width:150px;" | ||||
|                           min={0} | ||||
|                           controls={false} | ||||
|                           precision={2} | ||||
|                           v-model={row.price} | ||||
|                         ></el-input-number> | ||||
|                         <span> 元包邮 </span> | ||||
|                       </div> | ||||
|                     ), | ||||
|                     "件数+金额": ( | ||||
|                       <div> | ||||
|                         <el-input-number | ||||
|                           style="width:150px;" | ||||
|                           min={0} | ||||
|                           controls={false} | ||||
|                           precision={0} | ||||
|                           v-model={row.number} | ||||
|                         ></el-input-number> | ||||
|                         <span> 件,且 </span> | ||||
|                         <el-input-number | ||||
|                           style="width:150px;" | ||||
|                           min={0} | ||||
|                           controls={false} | ||||
|                           precision={2} | ||||
|                           v-model={row.price} | ||||
|                         ></el-input-number> | ||||
|                         <span> 元以上包邮 </span> | ||||
|                       </div> | ||||
|                     ), | ||||
|                   }; | ||||
|                   return ( | ||||
|                     <div class="flex justify-start items-center"> | ||||
|                       <el-select | ||||
|                         style="width:80px;" | ||||
|                         v-model={row.conditionType} | ||||
|                       > | ||||
|                         <el-option label="件数" value="件数"></el-option> | ||||
|                         <el-option label="金额" value="金额"></el-option> | ||||
|                         <el-option | ||||
|                           label="件数+金额" | ||||
|                           value="件数+金额" | ||||
|                         ></el-option> | ||||
|                       </el-select> | ||||
|                       <span> 满 </span> | ||||
|                       {_conditionMapper[row.conditionType]} | ||||
|                     </div> | ||||
|                   ); | ||||
|                 }, | ||||
|                 { | ||||
|                     label: "运费配置", | ||||
|                     prop: "fareConfig", | ||||
|                     type: "jsx", | ||||
|                     required: true, | ||||
|                     rules: { | ||||
|                         required: true, | ||||
|                         message: "请选择计价方式", | ||||
|                         trigger: "blur", | ||||
|                     }, | ||||
|                     render: () => { | ||||
|                         return ( | ||||
|                             <el-radio-group v-model={this.modalData.fareConfig}> | ||||
|                                 <el-radio label="全国包邮">全国包邮</el-radio> | ||||
|                                 <el-radio label="自定义运费">自定义运费</el-radio> | ||||
|                             </el-radio-group> | ||||
|                         ); | ||||
|                     }, | ||||
|                 } | ||||
|             ]; | ||||
|         }, | ||||
|         modalHandles() { | ||||
|             return [ | ||||
|                 { | ||||
|                     label: "关闭", | ||||
|                     type: "", | ||||
|                     handle: debounce(() => { | ||||
|                         this.toggle(); | ||||
|                     }, 300), | ||||
|                 }, | ||||
|                 { | ||||
|                     label: "确认", | ||||
|                     type: "primary", | ||||
|                     loading: this.isLoading, | ||||
|                     submit: true, | ||||
|                     handle: debounce(() => { | ||||
|                          | ||||
|                     }, 300), | ||||
|                 } | ||||
|               }, | ||||
|               { | ||||
|                 title: "操作", | ||||
|                 width: "200px", | ||||
|                 type: "jsx", | ||||
|                 render: (e) => { | ||||
|                   const remove = () => { | ||||
|                     console.log(e); | ||||
|                     this.modalData.shippingTemplatesConditionList.splice( | ||||
|                       e.rowIndex, | ||||
|                       1 | ||||
|                     ); | ||||
|                   }; | ||||
|                   const add = () => { | ||||
|                     console.log(e); | ||||
|                     this.modalData.shippingTemplatesConditionList.splice( | ||||
|                       e.rowIndex + 1, | ||||
|                       0, | ||||
|                       { | ||||
|                         cityCodes: "", | ||||
|                         price: "", | ||||
|                         number: "", | ||||
|                         conditionType: "件数", | ||||
|                       } | ||||
|                     ); | ||||
|                   }; | ||||
|                   return ( | ||||
|                     <div> | ||||
|                       <el-button type="primary" size="mini" onClick={add}> | ||||
|                         向下添加 | ||||
|                       </el-button> | ||||
|                       <el-button type="danger" size="mini" onClick={remove}> | ||||
|                         删除 | ||||
|                       </el-button> | ||||
|                     </div> | ||||
|                   ); | ||||
|                 }, | ||||
|               }, | ||||
|             ]; | ||||
|             const addAreaFare = () => { | ||||
|               this.modalData.shippingTemplatesConditionList.push({ | ||||
|                 cityCodes: "", | ||||
|                 price: "", | ||||
|                 number: "", | ||||
|                 conditionType: "件数", | ||||
|               }); | ||||
|             }; | ||||
|             return ( | ||||
|               <obj-table-plus | ||||
|                 class="mt-5" | ||||
|                 style="height:50vh;" | ||||
|                 enable-auto-query={false} | ||||
|                 v-model={this.modalData.shippingTemplatesConditionList} | ||||
|                 tableCols={tableCols} | ||||
|                 isPagination={false} | ||||
|               > | ||||
|                 <template slot="empty"> | ||||
|                   <el-button | ||||
|                     onClick={addAreaFare} | ||||
|                     type="text" | ||||
|                     icon="el-icon-plus" | ||||
|                   > | ||||
|                     添加其他地区/其他包邮条件 | ||||
|                   </el-button> | ||||
|                 </template> | ||||
|               </obj-table-plus> | ||||
|             ); | ||||
|           }, | ||||
|         }, | ||||
|       ]; | ||||
|     }, | ||||
|     asyncComputed: { | ||||
|         async getProductCategory() { | ||||
|             let res = await this.$api.mer_admin.getProductCategory(); | ||||
|             return res.data.data; | ||||
|     modalHandles() { | ||||
|       return [ | ||||
|         { | ||||
|           label: "关闭", | ||||
|           type: "", | ||||
|           handle: debounce(() => { | ||||
|             this.toggle(); | ||||
|           }, 300), | ||||
|         }, | ||||
|         async getSaleUnit() { | ||||
|             let res = await this.$api.mer_admin.getSaleUnit({ | ||||
|                 shopId: JSON.parse(sessionStorage.getItem("userInfo")).shopId, | ||||
|             }); | ||||
|             console.log(res); | ||||
|         { | ||||
|           label: "确认", | ||||
|           type: "primary", | ||||
|           loading: this.isLoading, | ||||
|           submit: true, | ||||
|           handle: debounce(() => {}, 300), | ||||
|         }, | ||||
|       ]; | ||||
|     }, | ||||
|   }, | ||||
|   asyncComputed: { | ||||
|     async getCityOptions() { | ||||
|       let res = await this.$api.mer_admin.getCity(); | ||||
|       return res.data.data; | ||||
|     }, | ||||
|     async getProductCategory() { | ||||
|       let res = await this.$api.mer_admin.getProductCategory(); | ||||
|       return res.data.data; | ||||
|     }, | ||||
|     async getSaleUnit() { | ||||
|       let res = await this.$api.mer_admin.getSaleUnit({ | ||||
|         shopId: JSON.parse(sessionStorage.getItem("userInfo")).shopId, | ||||
|       }); | ||||
|       console.log(res); | ||||
| 
 | ||||
|             return res.data.data; | ||||
|         }, | ||||
|       return res.data.data; | ||||
|     }, | ||||
|   }, | ||||
| }; | ||||
| </script> | ||||
| <style lang="scss" scoped> | ||||
| .obj-modal ::v-deep { | ||||
|     .el-dialog__body { | ||||
|         padding: 0 30px; | ||||
|     } | ||||
|   .el-dialog__body { | ||||
|     padding: 0 30px; | ||||
|   } | ||||
| } | ||||
| </style> | ||||
		Loading…
	
		Reference in New Issue