Commit 6030efcb authored by 黄奎's avatar 黄奎

页面修改

parent c5024339
This diff is collapsed.
...@@ -81,7 +81,14 @@ ...@@ -81,7 +81,14 @@
}, },
data() { data() {
return { return {
columns: [{ columns: [
{
name: 'CustomerId',
label: '客户编号',
field: 'CustomerId',
align: 'left'
},
{
name: 'CustomerName', name: 'CustomerName',
label: '姓名', label: '姓名',
field: 'CustomerName', field: 'CustomerName',
......
...@@ -205,7 +205,6 @@ ...@@ -205,7 +205,6 @@
CustomerId: this.customerObj.CustomerId CustomerId: this.customerObj.CustomerId
}).then(res => { }).then(res => {
var tempData = res.Data; var tempData = res.Data;
console.log("tempData", tempData);
this.objOption = tempData; this.objOption = tempData;
this.AuditMsg.CustomerId = tempData.CustomerId; this.AuditMsg.CustomerId = tempData.CustomerId;
this.AuditMsg.ApproveState = tempData.ApproveState; this.AuditMsg.ApproveState = tempData.ApproveState;
......
...@@ -158,7 +158,6 @@ ...@@ -158,7 +158,6 @@
//获取国家列表 //获取国家列表
getCountryList() { getCountryList() {
queryCountryList({}).then(res => { queryCountryList({}).then(res => {
console.log("res", res);
if (res.Code == 1) { if (res.Code == 1) {
this.CountryList=res.Data; this.CountryList=res.Data;
} }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div class="page-search row items-center"> <div class="page-search row items-center">
<div class="col row wrap q-col-gutter-md"> <div class="col row wrap q-col-gutter-md">
<div class="col-3"> <div class="col-3">
<q-input @input="resetSearch" clearable filled v-model="msg.TaskName" label="任务名称" /> <q-input @input="resetSearch" clearable filled v-model="msg.Description" label="关键字" />
</div> </div>
</div> </div>
</div> </div>
...@@ -82,9 +82,9 @@ ...@@ -82,9 +82,9 @@
align: 'left', align: 'left',
}, },
{ {
name: 'UpdateTime', name: 'UpdateTimeStr',
label: '更新时间', label: '更新时间',
field: 'UpdateTime', field: 'UpdateTimeStr',
align: 'left', align: 'left',
}, },
], ],
...@@ -96,6 +96,7 @@ ...@@ -96,6 +96,7 @@
pageSize: 12, pageSize: 12,
rowsPerPage: 12, rowsPerPage: 12,
RebateType: 1, RebateType: 1,
Description:"",
}, },
pageCount: 0, pageCount: 0,
taskOption: null, taskOption: null,
...@@ -104,7 +105,7 @@ ...@@ -104,7 +105,7 @@
}, },
created() { created() {
if (this.$route.query && this.$route.query.CustomerId) { if (this.$route.query && this.$route.query.CustomerId) {
//this.msg.CustomerId = this.$route.query.CustomerId this.msg.CustomerId = this.$route.query.CustomerId
} }
}, },
mounted() { mounted() {
...@@ -128,7 +129,6 @@ ...@@ -128,7 +129,6 @@
getList() { getList() {
this.loading = true; this.loading = true;
GetCustomerBalanceDetailPage(this.msg).then(res => { GetCustomerBalanceDetailPage(this.msg).then(res => {
console.log(res, '数据');
this.loading = false; this.loading = false;
if (res.Code == 1) { if (res.Code == 1) {
this.dataList = res.Data.PageData; this.dataList = res.Data.PageData;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div class="page-search row items-center"> <div class="page-search row items-center">
<div class="col row wrap q-col-gutter-md"> <div class="col row wrap q-col-gutter-md">
<div class="col-3"> <div class="col-3">
<q-input @input="resetSearch" clearable filled v-model="msg.TaskName" label="任务名称" /> <q-input @input="resetSearch" clearable filled v-model="msg.Description" label="关键字" />
</div> </div>
</div> </div>
</div> </div>
...@@ -81,9 +81,9 @@ ...@@ -81,9 +81,9 @@
align: 'left', align: 'left',
}, },
{ {
name: 'UpdateTime', name: 'UpdateTimeStr',
label: '更新时间', label: '更新时间',
field: 'UpdateTime', field: 'UpdateTimeStr',
align: 'left', align: 'left',
}, },
], ],
...@@ -95,6 +95,7 @@ ...@@ -95,6 +95,7 @@
pageSize: 12, pageSize: 12,
rowsPerPage: 12, rowsPerPage: 12,
RebateType: 2, RebateType: 2,
Description:"",
}, },
pageCount: 0, pageCount: 0,
taskOption: null, taskOption: null,
...@@ -103,7 +104,7 @@ ...@@ -103,7 +104,7 @@
}, },
created() { created() {
if (this.$route.query && this.$route.query.CustomerId) { if (this.$route.query && this.$route.query.CustomerId) {
//this.msg.CustomerId = this.$route.query.CustomerId this.msg.CustomerId = this.$route.query.CustomerId
} }
}, },
mounted() { mounted() {
...@@ -128,7 +129,6 @@ ...@@ -128,7 +129,6 @@
getList() { getList() {
this.loading = true; this.loading = true;
GetCustomerBalanceDetailPage(this.msg).then(res => { GetCustomerBalanceDetailPage(this.msg).then(res => {
console.log(res, '数据');
this.loading = false; this.loading = false;
if (res.Code == 1) { if (res.Code == 1) {
this.dataList = res.Data.PageData; this.dataList = res.Data.PageData;
......
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