Browse Source

添加费用关联

test
caoyizhong 2 years ago
parent
commit
9fc960434b
  1. 50
      src/api/basicdata/basicdataCostCorrelation.js
  2. 1
      src/lang/zh.js
  3. 34
      src/option/basicdata/basicZonePrice.js
  4. 109
      src/option/basicdata/basicdataCostCorrelation.js
  5. 6
      src/page/index/tags.vue
  6. 36
      src/router/views/index.js
  7. 14
      src/store/modules/tags.js
  8. 45
      src/views/basicdata/brand/basicClient.vue
  9. 125
      src/views/basicdata/brand/basicZonePrice.vue
  10. 343
      src/views/basicdata/brand/basicdataCostCorrelation.vue

50
src/api/basicdata/basicdataCostCorrelation.js

@ -0,0 +1,50 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/logpm-basicdata/basicdataCostCorrelation/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/logpm-basicdata/basicdataCostCorrelation/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/logpm-basicdata/basicdataCostCorrelation/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/logpm-basicdata/basicdataCostCorrelation/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/logpm-basicdata/basicdataCostCorrelation/submit',
method: 'post',
data: row
})
}

1
src/lang/zh.js

@ -117,5 +117,6 @@ export default {
clearCache: '清除缓存',
closeOthers: '关闭其它',
closeAll: '关闭所有',
current: '关闭当前页面',
},
};

34
src/option/basicdata/basicZonePrice.js

@ -94,23 +94,23 @@ export default {
prop: "brandName",
search: true,
},
{
label: "费用标识",
prop: "freightMark",
search: true,
},
{
label: "费用",
prop: "cost",
},
{
label: "仓储时间端状态",
prop: "warehousingTimeStatus",
},
{
label: "仓储时间端费用",
prop: "warehousingTimeCharge",
},
// {
// label: "费用标识",
// prop: "freightMark",
// search: true,
// },
// {
// label: "费用",
// prop: "cost",
// },
// {
// label: "仓储时间端状态",
// prop: "warehousingTimeStatus",
// },
// {
// label: "仓储时间端费用",
// prop: "warehousingTimeCharge",
// },
{
label: "地址",
prop: "province",

109
src/option/basicdata/basicdataCostCorrelation.js

@ -0,0 +1,109 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
// {
// label: "区域价格ID",
// prop: "zonePriceId",
// },
{
label: "编码",
prop: "coding",
search: true,
},
{
label: "费用",
prop: "ensue",
},
// {
// label: "标识",
// prop: "identification",
// },
]
}

6
src/page/index/tags.vue

@ -9,6 +9,7 @@
<div class="item" @click="closeOthersTags">{{ $t('tagsView.closeOthers') }}</div>
<div class="item" @click="closeAllTags">{{ $t('tagsView.closeAll') }}</div>
<div class="item" @click="clearCacheTags">{{ $t('tagsView.clearCache') }}</div>
<div class="item" @click="closeCurrent">{{ $t('tagsView.current') }}</div>
</div>
<div class="avue-tags__box">
<el-tabs
@ -171,6 +172,11 @@ export default {
this.$store.commit('DEL_ALL_TAG');
this.$router.push(this.tagWel);
},
closeCurrent() {
this.contextmenuFlag = false;
this.$store.commit('DEL_TAG_CURRENT');
this.$router.push(this.tagWel);
},
clearCacheTags() {
this.$confirm('是否需要清除缓存?', {
confirmButtonText: '确定',

36
src/router/views/index.js

@ -178,4 +178,40 @@ export default [
},
],
},
{
path: '/basicdata/brand/basicHistoricalContract',
component: Layout,
redirect: '/brand/basicHistoricalContract',
children: [
{
path: '/basicdata/brand/basicHistoricalContract',
name: '历史记录',
meta: {
i18n: 'dict',
},
props: route => ({ name: route.query.name,
id: route.query.id}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicHistoricalContract.vue'),
},
],
},
{
path: '/basicdata/brand/basicStorageServices',
component: Layout,
redirect: '/brand/basicStorageServices',
children: [
{
path: '/basicdata/brand/basicStorageServices',
name: '服务仓',
meta: {
i18n: 'dict',
},
props: route => ({ name: route.query.name,
id: route.query.id}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicStorageServices.vue'),
},
],
},
];

14
src/store/modules/tags.js

@ -29,8 +29,22 @@ const navs = {
},
DEL_TAG_OTHER: state => {
state.tagList = state.tagList.filter(item => {
console.log("关闭其他111state.tag.fullPath, website.fistPage.path",state.tag.fullPath, website.fistPage.path,item);
return [state.tag.fullPath, website.fistPage.path].includes(item.fullPath);
});
console.log("2222state.tagList",state.tagList);
setStore({ name: 'tagList', content: state.tagList });
},
DEL_TAG_CURRENT: state => {
state.tagList = state.tagList.filter(item => {
console.log("state.tag.fullPath, website.fistPage.path",state.tag.fullPath, website.fistPage.path,item);
// const del = '3'
// this.demoData = this.demoData.filter((o) => {
// return state.tag.fullPath !== del
// })
return state.tag.fullPath !== item.fullPath;
});
// console.log("state.tagList",state.tagList);
setStore({ name: 'tagList', content: state.tagList });
},
},

45
src/views/basicdata/brand/basicClient.vue

@ -102,12 +102,14 @@
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="230" align="center">
<el-table-column prop="menu" label="操作" :width="300" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleDrawer(row)">子表配置</el-button>-->
<el-button type="primary" text icon="el-icon-setting" @click="handleHistory(row)">合同历史记录</el-button>
<el-button type="primary" text icon="el-icon-setting" @click="handleEntrepot(row)">仓库</el-button>
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleDrawer(row)">仓库</el-button>-->
</template>
</el-table-column>
</el-table>
@ -245,6 +247,15 @@
:before-close="handleDrawerClose">
<BasicShopSub :mainId="basicClientId"></BasicShopSub>
</el-drawer>
<!-- <el-drawer-->
<!-- title="历史记录"-->
<!-- append-to-body-->
<!-- size="60%"-->
<!-- v-model="drawer"-->
<!-- :direction="direction"-->
<!-- :before-close="handleDrawerClose">-->
<!-- <BasicShopSub :mainId="basicClientId"></BasicShopSub>-->
<!-- </el-drawer>-->
</div>
</basic-container>
</template>
@ -630,6 +641,36 @@ export default {
this.basicClientId = row.id;
this.drawer = true;
},
//
handleHistory(row) {
// this.basicClientId = row.id;
// this.drawer = true;
// this.$router.push('/basicdata/brand/basicHistoricalContract?id='+row.id+";name="+row.clientName);
this.$router.push({
path:'/basicdata/brand/basicHistoricalContract',
query:{
id: row.id,
name: "历史记录 - "+row.clientName
}
});
},
//
handleEntrepot(row) {
// this.basicClientId = row.id;
// this.drawer = true;
// this.$router.push('/basicdata/brand/basicHistoricalContract?id='+row.id+";name="+row.clientName);
this.$router.push({
path:'/basicdata/brand/basicStorageServices',
query:{
id: row.id,
name: "服务仓 - "+row.clientName
}
});
},
handleDrawerClose(){
this.basicClientId = '';
this.drawer = false;

125
src/views/basicdata/brand/basicZonePrice.vue

@ -82,11 +82,12 @@
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<el-table-column prop="menu" label="操作" :width="300" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
<el-button type="primary" text icon="el-icon-setting" @click="handleDrawer(row)">费用明细</el-button>
</template>
</el-table-column>
</el-table>
@ -116,7 +117,7 @@
<!-- 表单字段 -->
<el-form-item label="地址" prop="province">
<!-- <el-input v-model="form.province" placeholder="请输入省"/>-->
<el-cascader :options="optioner" v-model="form.province" style="width: 100%">
<el-cascader :options="optioner" v-model="form.province" style="width: 100%;">
<template #default="{ node, data }">
<span>{{ data.label }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
@ -177,27 +178,27 @@
<!-- <el-form-item label="费用" prop="cost">-->
<!--&lt;!&ndash; <el-input v-model="form.cost" placeholder="请输入费用1111" v-for="(item,index) in costList" :key="index"/>&ndash;&gt;-->
<!-- </el-form-item>-->
<el-form-item label="仓储时间端" prop="warehousingTimeStatus">
<!-- <el-input v-model="form.warehousingTimeStatus" placeholder="请输入仓储时间端状态;1 0-30天 2 0-60天 3 60天以上"/>-->
<!-- <el-select v-model="form.warehousingTimeStatus" class="m-2" placeholder="请输入仓储时间端状态" >-->
<!-- <el-option-->
<!-- v-for="item in wareType"-->
<!-- <el-form-item label="仓储时间端" prop="warehousingTimeStatus">-->
<!--&lt;!&ndash; <el-input v-model="form.warehousingTimeStatus" placeholder="请输入仓储时间端状态;1 0-30天 2 0-60天 3 60天以上"/>&ndash;&gt;-->
<!--&lt;!&ndash; <el-select v-model="form.warehousingTimeStatus" class="m-2" placeholder="请输入仓储时间端状态" >&ndash;&gt;-->
<!--&lt;!&ndash; <el-option&ndash;&gt;-->
<!--&lt;!&ndash; v-for="item in wareType"&ndash;&gt;-->
<!--&lt;!&ndash; :key="item.dictKey"&ndash;&gt;-->
<!--&lt;!&ndash; :label="item.dictValue"&ndash;&gt;-->
<!--&lt;!&ndash; :value="item.dictKey"&ndash;&gt;-->
<!--&lt;!&ndash; />&ndash;&gt;-->
<!--&lt;!&ndash; </el-select>&ndash;&gt;-->
<!-- <el-checkbox-group v-model="form.warehousingTimeStatus" @change="handleCheckedCities">-->
<!-- <el-checkbox-->
<!-- v-for="(item,index) in wareType"-->
<!-- :key="item.dictKey"-->
<!-- :label="item.dictValue"-->
<!-- :value="item.dictKey"-->
<!-- />-->
<!-- </el-select>-->
<el-checkbox-group v-model="form.warehousingTimeStatus" @change="handleCheckedCities">
<el-checkbox
v-for="(item,index) in wareType"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>{{item.dictValue}}
<el-input type="number" v-model="item.remark" placeholder="请输入仓储时间端费用" :disabled = !item.pitch @change="textWarebox($event,index)"/>
</el-checkbox>
</el-checkbox-group>
</el-form-item>
<!-- >{{item.dictValue}}-->
<!-- <el-input type="number" v-model="item.remark" placeholder="请输入仓储时间端费用" :disabled = !item.pitch @change="textWarebox($event,index)"/>-->
<!-- </el-checkbox>-->
<!-- </el-checkbox-group>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="仓储时间端费用" prop="warehousingTimeCharge">-->
<!-- <el-input type="number" v-model="form.warehousingTimeCharge" placeholder="请输入仓储时间端费用"/>-->
<!-- </el-form-item>-->
@ -238,6 +239,15 @@
</span>
</template>
</el-dialog>
<el-drawer
title="费用操作"
append-to-body
size="40%"
v-model="drawer"
:direction="direction"
:before-close="handleDrawerClose">
<basicdata-cost-correlation :mainId="costCorrelationId"></basicdata-cost-correlation>
</el-drawer>
</div>
</basic-container>
</template>
@ -250,15 +260,24 @@ import option from "@/option/basicdata/basicZonePrice";
import { mapGetters } from "vuex";
import { getLazyTreeAll } from '@/api/base/region';
import { getDictionaryBiz } from '@/api/system/dict';
import BasicdataCostCorrelation from '@/views/basicdata/brand/basicdataCostCorrelation.vue'
export default {
components:{
BasicdataCostCorrelation
},
data () {
return {
height: 0,
//
title: '',
costCorrelationId: '',
//
box: false,
//
drawer: false,
//
direction: 'rtl',
//
search: true,
//
@ -341,6 +360,14 @@ export default {
}
},
methods: {
handleDrawerClose(){
this.costCorrelationId = '';
this.drawer = false;
},
handleDrawer(row) {
this.costCorrelationId = row.id;
this.drawer = true;
},
textWarebox(e,index) {
console.log(e,index)
this.costWraeList[index] = e;
@ -429,10 +456,10 @@ export default {
this.clientType = res.data.data;
});
//
getDictionaryBiz('warehousing_time_status').then(res => {
// console.log("",res);
this.wareType = res.data.data;
});
// getDictionaryBiz('warehousing_time_status').then(res => {
// // console.log("",res);
// this.wareType = res.data.data;
// });
},
searchHide () {
this.search = !this.search;
@ -446,6 +473,7 @@ export default {
this.onLoad(this.page);
},
bianli(costListName,clientType,costList,fei){
// console.log(">>>>>>>>>",costListName,clientType,costList,fei);
this.pan = false;
// fei = [];
for (let i = 0;i< costListName.length;i++){
@ -455,30 +483,31 @@ export default {
this.pan = true;
continue;
}
let yon ={
lable: 1,
value: zhi
};
clientType.forEach( it =>{
if(it.dictValue == this.costListName[i]){
yon.lable = it.dictKey;
if(it.dictValue == costListName[i]){
// console.log("",it.dictValue , costListName[i]);
//2.
fei.set(it.dictKey,zhi)
}
})
fei.push(yon);
}
},
handleSubmit (from) {
this.$refs[from].validate(async (valid) => {
if (valid) {
if (!this.form.id) {
let fei = [];
// console.log("",this.form);
let fei = new Map();
await this.bianli(this.costListName,this.clientType,this.costList,fei);
this.form.fei = fei;
this.form.freightMark = null;
let feishi = [];
await this.bianli(this.costWraeListName,this.wareType,this.costWraeList,feishi);
this.form.feishi = feishi;
this.form.warehousingTimeStatus = null;
this.form.fei = Object.fromEntries(fei);
// console.log("fei",fei);
this.form.freightMark = undefined;
// let feishi = new Map();
// await this.bianli(this.costWraeListName,this.wareType,this.costWraeList,feishi);
// this.form.feishi = Object.fromEntries(feishi);
// // console.log("feishi",feishi);
// this.form.warehousingTimeStatus = undefined;
if(this.pan){
this.$message.warning("请填写完整已勾选的数据费用");
return
@ -638,16 +667,16 @@ export default {
}
})
})
this.wareType.forEach(it =>{
data.records.forEach(i =>{
if(parseInt( it.dictKey ) == parseInt(i.warehousingTimeStatus)){
i.warehousingTimeStatus = it.dictValue
}
if(i.warehousingTimeStatus == '-1'){
i.warehousingTimeStatus = '无'
}
})
})
// this.wareType.forEach(it =>{
// data.records.forEach(i =>{
// if(parseInt( it.dictKey ) == parseInt(i.warehousingTimeStatus)){
// i.warehousingTimeStatus = it.dictValue
// }
// if(i.warehousingTimeStatus == '-1'){
// i.warehousingTimeStatus = ''
// }
// })
// })
this.page.total = data.total;
this.data = data.records;
let dz ="";

343
src/views/basicdata/brand/basicdataCostCorrelation.vue

@ -0,0 +1,343 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<el-form-item label="编码:">
<!-- <el-input v-model="query.coding" placeholder="请输入编码"></el-input>-->
<el-select v-model="query.coding" class="m-2" placeholder="请输入费用标识" style="width: 100%">
<el-option
v-for="item in codingData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
/>
</el-select>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="80" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>
<!-- 表单模块 -->
<el-dialog :title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
<!-- <el-form-item label="区域价格ID" prop="zonePriceId">-->
<!-- <el-input v-model="form.zonePriceId" placeholder="请输入区域价格ID"/>-->
<!-- </el-form-item>-->
<el-form-item label="编码" prop="coding">
<!-- <el-input v-model="form.coding" placeholder="请输入编码"/>-->
<el-select v-model="form.coding" class="m-2" placeholder="请输入费用标识" style="width: 100%">
<el-option
v-for="item in codingData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
/>
</el-select>
</el-form-item>
<el-form-item label="费用" prop="ensue">
<el-input v-model="form.ensue" placeholder="请输入费用"/>
</el-form-item>
<!-- <el-form-item label="标识" prop="identification">-->
<!-- <el-input v-model="form.identification" placeholder="请输入标识"/>-->
<!-- </el-form-item>-->
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"> </el-button>
<el-button icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/basicdata/basicdataCostCorrelation";
import option from "@/option/basicdata/basicdataCostCorrelation";
import { mapGetters } from "vuex";
import { getDictionary, getDictionaryBiz } from '@/api/system/dict';
export default {
props: {
mainId: {
type: String
},
},
data () {
return {
height: 0,
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
//
option: option,
//
data: [],
//
codingData: [],
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
watch:{
mainId: {
handler(newVal, oldVal) {
// console.log("");
this.onLoad(this.page);
}
}
},
methods: {
init () {
this.height = this.setPx(document.body.clientHeight - 340);
// getDictionary({code: 'team_type'}).then(res => {
// this.codingData = res.data.data;
// });
//
getDictionaryBiz('jg_freight_mark').then(res => {
// console.log("",res);
this.codingData = res.data.data;
});
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
this.form.zonePriceId = this.mainId; //ID
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
this.form.coding = this.form.coding.toString();
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
this.query.zonePriceId = this.mainId; //ID
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
// console.log("data",data);
this.codingData.forEach(it =>{
data.records.forEach(i =>{
if(parseInt( it.dictKey ) == parseInt(i.coding)){
i.coding = it.dictValue
}
if(i.freightMark == '-1'){
i.coding = '无'
}
})
})
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>
Loading…
Cancel
Save