|
@@ -383,6 +383,7 @@
|
|
|
type: "text",
|
|
type: "text",
|
|
|
},
|
|
},
|
|
|
],
|
|
],
|
|
|
|
|
+ quMarks:''
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
created() {
|
|
created() {
|
|
@@ -445,12 +446,12 @@
|
|
|
// 换页刷新
|
|
// 换页刷新
|
|
|
refreshformData: function (pageNum) {
|
|
refreshformData: function (pageNum) {
|
|
|
this.detailParams.pageNum = pageNum;
|
|
this.detailParams.pageNum = pageNum;
|
|
|
- this.getDetailData(2)
|
|
|
|
|
|
|
+ this.getDetailData()
|
|
|
},
|
|
},
|
|
|
// 每页条数发生改变
|
|
// 每页条数发生改变
|
|
|
handleSizeChange(pageSize) {
|
|
handleSizeChange(pageSize) {
|
|
|
this.detailParams.pageSize = pageSize;
|
|
this.detailParams.pageSize = pageSize;
|
|
|
- this.getDetailData(2)
|
|
|
|
|
|
|
+ this.getDetailData()
|
|
|
},
|
|
},
|
|
|
// 列表换页刷新
|
|
// 列表换页刷新
|
|
|
refreshListData: function (pageNum) {
|
|
refreshListData: function (pageNum) {
|
|
@@ -472,18 +473,20 @@
|
|
|
handleDetail(index) {
|
|
handleDetail(index) {
|
|
|
this.detailParams.areaCode = index.areaCode;
|
|
this.detailParams.areaCode = index.areaCode;
|
|
|
this.detailDialog = true;
|
|
this.detailDialog = true;
|
|
|
- this.getDetailData(1)
|
|
|
|
|
|
|
+ this.quMarks='1'
|
|
|
|
|
+ this.getDetailData()
|
|
|
this.isPersonnel=false
|
|
this.isPersonnel=false
|
|
|
},
|
|
},
|
|
|
handlePersonnelDetail(index) {
|
|
handlePersonnelDetail(index) {
|
|
|
|
|
+ this.quMarks='2'
|
|
|
this.detailParams.areaCode = index.areaCode;
|
|
this.detailParams.areaCode = index.areaCode;
|
|
|
this.detailDialog = true;
|
|
this.detailDialog = true;
|
|
|
- this.getDetailData(2)
|
|
|
|
|
|
|
+ this.getDetailData()
|
|
|
this.isPersonnel=true
|
|
this.isPersonnel=true
|
|
|
},
|
|
},
|
|
|
- getDetailData(quMarks){
|
|
|
|
|
|
|
+ getDetailData(){
|
|
|
this.loading = true;
|
|
this.loading = true;
|
|
|
- this.$api.user.quUserNumDetail({...this.detailParams,userId:this.userId,createTimeStart:this.formData.createTimeStart,createTimeEnd:this.formData.createTimeEnd,quMarks }).then((res) => {
|
|
|
|
|
|
|
+ this.$api.user.quUserNumDetail({...this.detailParams,userId:this.userId,createTimeStart:this.formData.createTimeStart,createTimeEnd:this.formData.createTimeEnd,quMarks:this.quMarks }).then((res) => {
|
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
|
this.detailData = res.data.records;
|
|
this.detailData = res.data.records;
|
|
|
this.detailParams.pageNum = res.data.current;
|
|
this.detailParams.pageNum = res.data.current;
|