1004749546@qq.com před 4 roky
rodič
revize
d8c16a8600

+ 1 - 1
src/views/reportForm/rubbishDeliverySearchTime.vue

@@ -96,7 +96,7 @@ export default {
       // 表头
       columns: [
         { title: '序号', dataIndex: 'no', width: 60, align: 'center' },
-        { title: '投递时间', dataIndex: 'putInDate', width: 100, align: 'center' },
+        { title: '投递时间', dataIndex: 'putInDate', width: 100, align: 'center', customRender: (text) => { return text + '时' } },
         { title: '可回收垃圾投递量(kg)',
           children: [
             { title: '废旧衣物', width: 100, align: 'center', dataIndex: 'clothesWeight', customRender: (text) => { return text || 0 } },

+ 3 - 0
src/views/reportForm/rubbishDeliveryTotal.vue

@@ -304,7 +304,9 @@ export default {
       this.addrDistrictList = []
 	  this.queryParam.provinceName = val ? this.addrProvinceList.find(item => item.code == this.queryParam.provinceCode).name : ''
       this.queryParam.cityCode = undefined
+      this.queryParam.cityName = ''
       this.queryParam.districtCode = undefined
+      this.queryParam.districtName = ''
       this.getCityListRequest(val)
     },
     getCityListRequest (val) {
@@ -323,6 +325,7 @@ export default {
       this.addrDistrictList = []
 	  this.queryParam.cityName = val ? this.addrCityList.find(item => item.code == this.queryParam.cityCode).name : ''
       this.queryParam.districtCode = undefined
+	  this.queryParam.districtName = ''
       this.getAreaListRequest(val)
     },
     getAreaListRequest (val) {