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

页面修改

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