|
@@ -35,7 +35,7 @@
|
|
|
<view class="screen-module">
|
|
|
<text class="screen-tit">巡店人:</text>
|
|
|
<view class="screen-inp-val">
|
|
|
- <u-input class="screen-inp" v-model="moreScreen.shopInspector" :height="52" placeholder="请输入" type="text" :border="true" />
|
|
|
+ <u-input class="screen-inp" v-model="moreScreen.userName" :height="52" placeholder="请输入" type="text" :border="true" />
|
|
|
</view>
|
|
|
</view>
|
|
|
</scroll-view>
|
|
@@ -84,7 +84,7 @@
|
|
|
sourceTypeList: [], // 检查方式数据列表
|
|
|
moreScreen: { // 数据暂存
|
|
|
storeName: '', // 门店
|
|
|
- shopInspector: '' // 巡店人
|
|
|
+ userName: '' // 巡店人
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -109,9 +109,9 @@
|
|
|
this.searchForm.creatTime = this.defaultParams.creatTime ? this.defaultParams.creatTime : []
|
|
|
this.range = this.searchForm.creatTime
|
|
|
this.searchForm.storeName = this.defaultParams.storeName ? this.defaultParams.storeName : ''
|
|
|
- this.searchForm.shopInspector = this.defaultParams.shopInspector ? this.defaultParams.shopInspector : ''
|
|
|
+ this.searchForm.userName = this.defaultParams.userName ? this.defaultParams.userName : ''
|
|
|
this.moreScreen.storeName = this.searchForm.storeName
|
|
|
- this.moreScreen.shopInspector = this.searchForm.shopInspector
|
|
|
+ this.moreScreen.userName = this.searchForm.userName
|
|
|
this.defaultSourceType()
|
|
|
},
|
|
|
// 巡店人、状态 筛选条件 change
|
|
@@ -128,7 +128,7 @@
|
|
|
closeDropdown(){
|
|
|
this.searchForm.creatTime = this.range
|
|
|
this.searchForm.storeName = this.moreScreen.storeName
|
|
|
- this.searchForm.shopInspector = this.moreScreen.shopInspector
|
|
|
+ this.searchForm.userName = this.moreScreen.userName
|
|
|
this.$emit('refresh', this.searchForm)
|
|
|
this.$refs.uDropdown.close()
|
|
|
},
|
|
@@ -152,7 +152,7 @@
|
|
|
this.defaultSourceType()
|
|
|
}else if(ind == 3){ // 多条件筛选
|
|
|
this.moreScreen.storeName = this.searchForm.storeName
|
|
|
- this.moreScreen.shopInspector = this.searchForm.shopInspector
|
|
|
+ this.moreScreen.userName = this.searchForm.userName
|
|
|
this.range = this.searchForm.creatTime
|
|
|
}
|
|
|
},
|