Browse Source

客户信息管理-开通账号bug处理,编辑弹窗宽度调整

fix_bug_pro20231227
396316021 2 years ago
parent
commit
fcae3952cc
  1. 680
      src/views/basicdata/brand/basicClient.vue
  2. 792
      src/views/basicdata/brand/basicClientAccount.vue

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

File diff suppressed because it is too large Load Diff

792
src/views/basicdata/brand/basicClientAccount.vue

@ -1,217 +1,235 @@
<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>
<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>
</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 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>
</el-row>
<el-dialog title="创建账号" v-model="openAcountStatus">
<el-form :disabled="view" ref="openAcountorm" :model="openAcountform" :rules="openAcountrules" label-width="120px">
</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-form-item label="姓名" prop="openAcountform.name" >
<el-input v-model="openAcountform.name" placeholder="请输入联系人" maxlength="20" style="width: 100%" />
<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 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 label="密码">
<span style="color: red">默认系统初始化密码</span>
</el-form-item>
</el-form>
</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>
<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';
</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' //
export default {
data() {
return {
columnList: [
{
prop: '',
label: '',
type: 0,
values: '',
width: '55',
checkarr: [],
fixed: true,
},
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
{
prop: 'no',
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,
},
//
form: {},
pan: false,
//
selectionList: [],
//
data: [],
optioner:[],
optionsr:[],
optionser:[],
rules: {
{
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' }
@ -234,225 +252,191 @@
// goalGranary: [
// { required: true, message: '', trigger: 'blur' }
// ],
},
}
},
};
},
watch: {},
created() {
this.onLoad(this.page);
},
mounted() {
this.init();
},
computed: {
...mapGetters(['permission']),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
},
watch: {
},
methods: {
//
hideCascaderInp() {
this.$refs.cascaderRef.value.togglePopperVisible(false);
},
created() {
handleDrawerClose() {
this.costCorrelationId = '';
this.drawer = false;
},
mounted () {
this.init();
handleDrawer(row) {
this.costCorrelationId = row.id;
this.drawer = true;
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
textWarebox(e, index) {
console.log(e, index);
this.costWraeList[index] = e;
},
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 = [];
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;
}
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 () {
});
},
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);
},
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();
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: "操作成功!"
type: 'success',
message: '操作成功!',
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}
});
},
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(() => {
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;
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
});
});
}
}
};
</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>
},
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.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…
Cancel
Save