26 changed files with 1374 additions and 241 deletions
@ -0,0 +1,21 @@ |
|||||||
|
import request from '@/axios'; |
||||||
|
|
||||||
|
export const getList = (current, size, params) => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-basicdata/basicdataClientAccount/page', |
||||||
|
method: 'get', |
||||||
|
params: { |
||||||
|
...params, |
||||||
|
current, |
||||||
|
size, |
||||||
|
} |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
export const add = (row) => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-basicdata/basicdataClientAccount/submit', |
||||||
|
method: 'post', |
||||||
|
data: row |
||||||
|
}) |
||||||
|
} |
@ -0,0 +1,458 @@ |
|||||||
|
<template> |
||||||
|
<basic-container> |
||||||
|
<div class="avue-crud"> |
||||||
|
<el-row v-if="!search" style="padding:6px 18px"> |
||||||
|
<!-- 查询模块 --> |
||||||
|
<el-form :inline="true" :model="query"> |
||||||
|
|
||||||
|
<el-form-item label="账号:"> |
||||||
|
<el-input v-model="query.account" placeholder="请输入账号"></el-input> |
||||||
|
</el-form-item> |
||||||
|
<!-- <el-form-item label="状态:">--> |
||||||
|
<!-- <el-input v-model="query.condition" placeholder="请输入状态"></el-input>--> |
||||||
|
<!-- </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> |
||||||
|
<!-- 列表模块 --> |
||||||
|
<tablecmt |
||||||
|
:columnList="columnList" |
||||||
|
:tableData="data" |
||||||
|
:loading="loading" |
||||||
|
@inputTxt="inputsc" |
||||||
|
@timeCheck="timesc" |
||||||
|
@btnCheck="btnsc" |
||||||
|
@selectCheck="selectsc" |
||||||
|
@selection="selectionChange" |
||||||
|
> |
||||||
|
<template #default="slotProps"> |
||||||
|
|
||||||
|
<!-- <el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope.row)">查看</el-text> --> |
||||||
|
<el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)">删除</el-text> |
||||||
|
</template> |
||||||
|
</tablecmt> |
||||||
|
|
||||||
|
</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="[30, 50,80, 120]" |
||||||
|
:page-size="page.pageSize" |
||||||
|
layout="total, sizes, prev, pager, next, jumper" |
||||||
|
:total="page.total"> |
||||||
|
</el-pagination> |
||||||
|
</div> |
||||||
|
</el-row> |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<el-dialog title="创建账号" v-model="openAcountStatus"> |
||||||
|
|
||||||
|
<el-form :disabled="view" ref="openAcountorm" :model="openAcountform" :rules="openAcountrules" label-width="120px"> |
||||||
|
|
||||||
|
<el-form-item label="姓名" prop="openAcountform.name" > |
||||||
|
<el-input v-model="openAcountform.name" placeholder="请输入联系人" maxlength="20" style="width: 100%" /> |
||||||
|
</el-form-item> |
||||||
|
|
||||||
|
<el-form-item label="账号" prop="openAcountform.phone" > |
||||||
|
<el-input v-model="openAcountform.phone" placeholder="请输入电话" type="number" maxlength="11" style="width: 100%" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="密码" > |
||||||
|
<span style="color: red;">默认系统初始化密码</span> |
||||||
|
</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('openAcountorm')">提 交</el-button> |
||||||
|
<el-button icon="el-icon-circle-close" @click="openAcountStatus = false">取 消</el-button> |
||||||
|
</span> |
||||||
|
</template> |
||||||
|
|
||||||
|
</el-dialog> |
||||||
|
|
||||||
|
|
||||||
|
</div> |
||||||
|
</basic-container> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import { getList,add } from "@/api/basicdata/basicClientAccount"; |
||||||
|
import { mapGetters } from "vuex"; |
||||||
|
|
||||||
|
export default { |
||||||
|
|
||||||
|
data () { |
||||||
|
return { |
||||||
|
columnList: [ |
||||||
|
{ |
||||||
|
prop: '', |
||||||
|
label: '序号', |
||||||
|
type: 0, |
||||||
|
values: '', |
||||||
|
width: 55, |
||||||
|
checkarr: [], |
||||||
|
fixed: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'phone', |
||||||
|
label: '账号', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '200', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
head: false, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'name', |
||||||
|
label: '姓名', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '200', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
head: false, |
||||||
|
}, |
||||||
|
|
||||||
|
|
||||||
|
{ |
||||||
|
prop: 'createTime', |
||||||
|
label: '创建时间', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: '', |
||||||
|
label: '操作', |
||||||
|
type: 6, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: 'right', |
||||||
|
hide: true, |
||||||
|
}, |
||||||
|
], |
||||||
|
optionProps:{ |
||||||
|
value: 'id', |
||||||
|
label: 'cName', |
||||||
|
children: 'childrenList', //子元素字段名 |
||||||
|
emitPath : false, |
||||||
|
checkStrictly:true, |
||||||
|
expandTrigger: 'hover' //设置鼠标悬浮展开,如果点击展开的话,会出现点击父节点后选择器直接关闭,不能选择子节点了 |
||||||
|
}, |
||||||
|
cascaderKey : 1,//防止搜索选项清空数据后出现报错,在加载级联选择器数据的时候+1 |
||||||
|
height: 0, |
||||||
|
// 弹框标题 |
||||||
|
title: '', |
||||||
|
costCorrelationId: '', |
||||||
|
// 是否展示弹框 |
||||||
|
box: false, |
||||||
|
openAcountStatus:false,//开通账号弹出框状态 |
||||||
|
openAcountform:{ |
||||||
|
name:"", |
||||||
|
phone:"" |
||||||
|
}, |
||||||
|
// 是否展示抽屉 |
||||||
|
drawer: false, |
||||||
|
// 抽屉方向 |
||||||
|
direction: 'rtl', |
||||||
|
// 是否显示查询 |
||||||
|
search: true, |
||||||
|
// 加载中 |
||||||
|
loading: true, |
||||||
|
// 是否为查看模式 |
||||||
|
view: false, |
||||||
|
// 查询信息 |
||||||
|
query: {}, |
||||||
|
// 分页信息 |
||||||
|
page: { |
||||||
|
currentPage: 1, |
||||||
|
pageSize: 30, |
||||||
|
total: 40 |
||||||
|
}, |
||||||
|
// 表单数据 |
||||||
|
form: {}, |
||||||
|
pan: false, |
||||||
|
// 选择行 |
||||||
|
selectionList: [], |
||||||
|
// 表单列表 |
||||||
|
data: [], |
||||||
|
optioner:[], |
||||||
|
optionsr:[], |
||||||
|
optionser:[], |
||||||
|
rules: { |
||||||
|
// province: [ |
||||||
|
// { required: true, message: '请选择地址', trigger: 'blur' }, |
||||||
|
// // { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' } |
||||||
|
// ], |
||||||
|
// brand: [ |
||||||
|
// { required: true, message: '请选择品牌', trigger: 'change' } |
||||||
|
// ], |
||||||
|
// freightMark : [ |
||||||
|
// { required: true, message: '请选择费用类型', trigger: 'blur' } |
||||||
|
// ], |
||||||
|
// cost: [ |
||||||
|
// { required: true, message: '请输入费用', trigger: 'blur' } |
||||||
|
// ], |
||||||
|
// warehousingTimeStatus: [ |
||||||
|
// { required: true, message: '请选择时间段', trigger: 'change' } |
||||||
|
// ], |
||||||
|
// warehousingTimeCharge: [ |
||||||
|
// { required: true, message: '请选择时间段费用', trigger: 'blur' } |
||||||
|
// ], |
||||||
|
// goalGranary: [ |
||||||
|
// { required: true, message: '请选择末端仓', trigger: 'blur' } |
||||||
|
// ], |
||||||
|
}, |
||||||
|
} |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
|
||||||
|
}, |
||||||
|
created() { |
||||||
|
|
||||||
|
}, |
||||||
|
mounted () { |
||||||
|
this.init(); |
||||||
|
|
||||||
|
}, |
||||||
|
computed: { |
||||||
|
...mapGetters(["permission"]), |
||||||
|
ids () { |
||||||
|
let ids = []; |
||||||
|
this.selectionList.forEach(ele => { |
||||||
|
ids.push(ele.id); |
||||||
|
}); |
||||||
|
return ids.join(","); |
||||||
|
} |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
//关闭浮层 |
||||||
|
hideCascaderInp(){ |
||||||
|
this.$refs.cascaderRef.value.togglePopperVisible(false) |
||||||
|
|
||||||
|
}, |
||||||
|
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; |
||||||
|
}, |
||||||
|
textbox(e,index) { |
||||||
|
console.log(e,index) |
||||||
|
this.costList[index] = e; |
||||||
|
}, |
||||||
|
handleCheckedCities(value) { |
||||||
|
console.log(value); |
||||||
|
if(value.length < 1){ |
||||||
|
this.costWraeList = []; |
||||||
|
} |
||||||
|
this.wareType.forEach(i =>{ |
||||||
|
if(value.includes(i.dictValue)){ |
||||||
|
// console.log(i); |
||||||
|
i.pitch = true; |
||||||
|
// this.$set(i,'pitch',false); |
||||||
|
this.costWraeListName = value; |
||||||
|
}else{ |
||||||
|
i.pitch = false; |
||||||
|
this.costWraeList[i] = null; |
||||||
|
i.remark = null; |
||||||
|
} |
||||||
|
}); |
||||||
|
}, |
||||||
|
handleCheckedCitiesChange(value) { |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}, |
||||||
|
remoteMethod(query){ |
||||||
|
|
||||||
|
}, |
||||||
|
remoteMethodBin(query){ |
||||||
|
|
||||||
|
}, |
||||||
|
init () { |
||||||
|
this.height = this.setPx(document.body.clientHeight - 340); |
||||||
|
}, |
||||||
|
searchHide () { |
||||||
|
this.search = !this.search; |
||||||
|
}, |
||||||
|
searchChange () { |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
searchReset () { |
||||||
|
this.query = {}; |
||||||
|
this.page.currentPage = 1; |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
|
||||||
|
handleSubmit (from) { |
||||||
|
this.$refs[from].validate(async (valid) => { |
||||||
|
if (valid) { |
||||||
|
this.openAcountform.clientId=this.$route.query.id; |
||||||
|
add(this.openAcountform).then(() => { |
||||||
|
this.openAcountStatus = false; |
||||||
|
this.onLoad(this.page); |
||||||
|
this.$message({ |
||||||
|
type: 'success', |
||||||
|
message: '操作成功!' |
||||||
|
}); |
||||||
|
}); |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
}, |
||||||
|
handleAdd () { |
||||||
|
|
||||||
|
this.openAcountStatus = true; |
||||||
|
|
||||||
|
}, |
||||||
|
handleEdit (row) { |
||||||
|
|
||||||
|
|
||||||
|
}, |
||||||
|
handleView (row) { |
||||||
|
|
||||||
|
|
||||||
|
}, |
||||||
|
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 = []; |
||||||
|
}, |
||||||
|
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.clientId= this.$route.query.id; |
||||||
|
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
||||||
|
const data = res.data.data; |
||||||
|
this.clientType.forEach(it =>{ |
||||||
|
data.records.forEach(i =>{ |
||||||
|
if(parseInt( it.dictKey ) == parseInt(i.freightMark)){ |
||||||
|
i.freightMark = it.dictValue |
||||||
|
} |
||||||
|
if(i.freightMark == '-1'){ |
||||||
|
i.freightMark = '无' |
||||||
|
} |
||||||
|
}) |
||||||
|
}) |
||||||
|
|
||||||
|
this.page.total = data.total; |
||||||
|
this.data = data.records; |
||||||
|
this.loading = false; |
||||||
|
this.selectionClear(); |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
</script> |
||||||
|
<style> |
||||||
|
.ca .el-radio__inner { |
||||||
|
top: -18px; |
||||||
|
left: -19px; |
||||||
|
border-radius: 0; |
||||||
|
border: 0; |
||||||
|
width: 170px; |
||||||
|
height: 34px; |
||||||
|
background-color: transparent; |
||||||
|
cursor: pointer; |
||||||
|
box-sizing: border-box; |
||||||
|
position: absolute; |
||||||
|
} |
||||||
|
|
||||||
|
.ca .el-radio__input.is-checked .el-radio__inner { |
||||||
|
background: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
</style> |
||||||
|
|
Loading…
Reference in new issue