Commit 4d881832 authored by 黄奎's avatar 黄奎

页面修改

parent c4c95c6d
......@@ -52,7 +52,7 @@
<categoryEdit-form v-if="isShowCategoryForm" :customerObj="customerObj" @close="closeCustomForm"
@success="refreshQuestion">
</categoryEdit-form>
<peerRight v-if="isShowDetailForm" :rowId="curRowId" @close="closeCustomForm" :auth="AuthorityObj" @success="refreshQuestion"></peerRight>
<peerRight v-if="isShowDetailForm" :CategoryId="CategoryId" @close="closeCustomForm" :auth="AuthorityObj" @success="refreshQuestion"></peerRight>
</div>
</template>
<script>
......@@ -136,7 +136,7 @@
isShowRebate: false //是否显示返佣
},
isShowDetailForm:false,
curRowId:0
CategoryId:0
};
},
created() {
......@@ -204,8 +204,7 @@
},
//客户详情
showDetail(row) {
console.log(row);
this.curRowId = row.CategoryId;
this.CategoryId = row.CategoryId;
this.isShowDetailForm = true;
}
}
......
<template>
<q-dialog
v-model="persistent"
maximized
full-height
seamless
position="right"
@hide="closeAuditCustomerForm"
>
<q-dialog v-model="persistent" maximized full-height seamless position="right" @hide="closeAuditCustomerForm">
<div class="info-content-component">
<div class="info-head flex items-center">
<div class="flex items-center">
......@@ -23,34 +16,36 @@
<baseInfo :Data="detailData" @confirm="saveBaseInfo"></baseInfo>
</div>
<div class="detail-log">
<right :Id="rowId"></right>
<right :Id="CategoryId"></right>
</div>
</div>
</div>
<div
class="dialog-out-close"
@click="closeAuditCustomerForm"
style="height:40px !important;border-top-left-radius: 4px !important;border-bottom-left-radius: 4px !important;"
>
<div class="dialog-out-close" @click="closeAuditCustomerForm"
style="height:40px !important;border-top-left-radius: 4px !important;border-bottom-left-radius: 4px !important;">
<q-icon name="iconfont icon-jujue1" size="26px" />
</div>
</q-dialog>
</template>
<script>
import { GetCustomer, SetCustomer ,RemoveCustomer,setCustomerCareOf} from "../../../api/sale/peemanagement";
import {
import {
GetCustomer,
SetCustomer,
RemoveCustomer,
setCustomerCareOf
} from "../../../api/sale/peemanagement";
import {
queryCustomerCategory,
saveCustomerCategory
} from "../../../api/users/user"
import baseInfo from "./baseInfo.vue";
import right from "./conRight.vue";
export default {
} from "../../../api/users/user"
import baseInfo from "./baseInfo.vue";
import right from "./conRight.vue";
export default {
components: {
baseInfo,
right
},
props: {
rowId: {
CategoryId: {
type: Number,
default: 0
},
......@@ -92,7 +87,7 @@ export default {
};
queryCustomerCategory(msg).then(res => {
if (res.Code == 1) {
console.log(res,'数据');
console.log(res, '数据');
this.detailData = res.Data;
}
});
......@@ -102,14 +97,14 @@ export default {
},
saveBaseInfo(obj) {
this.detailData[obj.field] = obj.val;
console.log(this.detailData,'this.detailData');
console.log(this.detailData, 'this.detailData');
let msg = {
CategoryName:this.detailData.CategoryName,
CatetoryType:this.detailData.CatetoryType,
CategoryId:this.detailData.CategoryId,
linkMan:'',
linkTel:''
CategoryName: this.detailData.CategoryName,
CatetoryType: this.detailData.CatetoryType,
CategoryId: this.detailData.CategoryId,
linkMan: '',
linkTel: ''
}
saveCustomerCategory(msg).then(res => {
if (res.Code == 1) {
......@@ -166,10 +161,10 @@ export default {
});
},
}
};
};
</script>
<style lang="scss" scoped>
.info-content-component {
.info-content-component {
display: flex;
flex-direction: column;
width: 1010px;
......@@ -212,5 +207,5 @@ export default {
overflow: hidden;
}
}
}
}
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment