|
@@ -104,6 +104,11 @@
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24" v-show="isShowCustomerSearch">
|
|
|
+ <a-form-item label="客服">
|
|
|
+ <customerService ref="customerName" v-model="queryParam.bizUserSn"></customerService>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
</template>
|
|
|
<a-col :md="8" :sm="24">
|
|
|
<a-button type="primary" :disabled="disabled" @click="$refs.table.refresh(true)">查询</a-button>
|
|
@@ -308,10 +313,11 @@ import { hdExportExcel } from '@/libs/exportExcel'
|
|
|
import chooseWarehouse from '@/views/common/chooseWarehouse'
|
|
|
import { dispatchBatchPrintStatus, queryBySalesBillSn } from '@/api/dispatch'
|
|
|
import { salesDetailExport } from '@/api/salesBillReport'
|
|
|
+import customerService from '@/views/common/customerService'
|
|
|
export default {
|
|
|
name: 'SalesQueryList',
|
|
|
mixins: [commonMixin],
|
|
|
- components: { STable, VSelect, chooseCustomModal, dealerSubareaScopeList, Area, rangeDate, subarea, commonModal, reportModal, chooseWarehouse, baseDataModal },
|
|
|
+ components: { STable, VSelect, chooseCustomModal, dealerSubareaScopeList, Area, rangeDate, subarea, commonModal, reportModal, chooseWarehouse, baseDataModal, customerService },
|
|
|
data () {
|
|
|
return {
|
|
|
spinning: false,
|
|
@@ -346,7 +352,8 @@ export default {
|
|
|
shippingAddrProvinceSn: undefined,
|
|
|
warehouseSn: undefined,
|
|
|
promoFlag: undefined,
|
|
|
- expenseClainFlag: undefined
|
|
|
+ expenseClainFlag: undefined,
|
|
|
+ bizUserSn: undefined
|
|
|
},
|
|
|
totalData: {
|
|
|
totalAmount: 0,
|
|
@@ -676,6 +683,7 @@ export default {
|
|
|
this.queryParam.warehouseSn = undefined
|
|
|
this.queryParam.promoFlag = undefined
|
|
|
this.queryParam.expenseClainFlag = undefined
|
|
|
+ this.queryParam.bizUserSn = undefined
|
|
|
if (this.advanced) {
|
|
|
this.$refs.subarea.clearData()
|
|
|
}
|