123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <template>
- <a-modal
- centered
- class="chooseCustomer-modal"
- :footer="null"
- :maskClosable="false"
- title="选择客户"
- v-model="isShow"
- @cancle="isShow=false"
- :width="900">
- <div class="chooseCustomer-con">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="客户名称">
- <a-input id="chooseCustomer-dealerName" v-model.trim="queryParam.dealerName" allowClear placeholder="请输入客户名称"/>
- </a-form-item>
- </a-col>
- <a-col :md="12" :sm="24">
- <a-row>
- <a-form-item label="地区">
- <a-col span="7">
- <a-form-item prop="provinceSn" style="margin: 0;">
- <a-select v-model="queryParam.provinceSn" @change="getCityList" placeholder="请选择省">
- <a-select-option v-for="item in addrProvinceList" :value="item.id" :key="item.id + 'a'">{{ item.name }}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col span="7" offset="1">
- <a-form-item prop="citySn" style="margin: 0;">
- <a-select v-model="queryParam.citySn" @change="getAreaList" placeholder="请选择市">
- <a-select-option v-for="item in addrCityList" :value="item.id" :key="item.id + 'b'">{{ item.name }}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col span="7" offset="1">
- <a-form-item prop="countySn" style="margin: 0;">
- <a-select v-model="queryParam.countySn" placeholder="请选择区/县">
- <a-select-option v-for="item in addrDistrictList" :value="item.id" :key="item.id + 'c'">{{ item.name }}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-form-item>
- </a-row>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-button style="margin-bottom: 18px;" type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="promotionRulesList-refresh">查询</a-button>
- <a-button style="margin: 0 0 18px 8px" @click="resetSearchForm" :disabled="disabled" id="promotionRulesList-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <p style="font-weight: bold;">当前已选:{{ selectedRowKeys.length }}个</p>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="small"
- :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- bordered>
- </s-table>
- <!-- 按钮 -->
- <div class="btn-con">
- <a-button
- type="primary"
- id="chooseCustomer-submit"
- size="large"
- class="button-primary"
- style="padding: 0 60px;"
- @click="handleSubmit">确定</a-button>
- <a-button
- id="chooseCustomer-cancel"
- size="large"
- class="button-cancel"
- @click="isShow=false"
- style="padding: 0 60px;margin-left: 15px;">取消</a-button>
- </div>
- </div>
- </a-modal>
- </template>
- <script>
- import { STable } from '@/components'
- import { getArea } from '@/api/data'
- import { dealerQueryList } from '@/api/dealer'
- export default {
- name: 'ChooseCustomerModal',
- components: { STable },
- props: {
- openModal: { // 弹框显示状态
- type: Boolean,
- default: false
- },
- chooseCust: {
- type: Array,
- default: () => {
- return []
- }
- }
- },
- data () {
- return {
- isShow: this.openModal, // 是否打开弹框
- disabled: false, // 查询、重置按钮是否可操作
- queryParam: {
- dealerName: '',
- provinceSn: undefined,
- citySn: undefined,
- districtSn: undefined
- },
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '客户名称', dataIndex: 'dealerName', align: 'center', customRender: function (text) { return text || '--' } }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- return dealerQueryList(Object.assign(parameter, this.queryParam)).then(res => {
- const data = res.data
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- this.disabled = false
- return data
- })
- },
- selectedRowKeys: [],
- addrProvinceList: [], // 省下拉
- addrCityList: [], // 市下拉
- addrDistrictList: [] // 区下拉
- }
- },
- methods: {
- // 重置
- resetSearchForm () {
- this.queryParam.dealerName = ''
- this.queryParam.provinceSn = undefined
- this.queryParam.citySn = undefined
- this.queryParam.districtSn = undefined
- this.$refs.table.refresh(true)
- },
- // 确定
- handleSubmit () {
- if (this.selectedRowKeys.length < 1) {
- this.$message.warning('请在列表勾选后再进行操作!')
- return
- }
- this.$emit('ok', this.selectedRowKeys)
- this.isShow = false
- },
- onSelectChange (selectedRowKeys, selectedRows) {
- console.log('selectedRowKeys changed: ', selectedRowKeys, selectedRows)
- this.selectedRowKeys = selectedRowKeys
- },
- // 获取城市列表
- getCityList (val) {
- this.addrCityList = []
- this.addrDistrictList = []
- this.queryParam.citySn = undefined
- this.queryParam.districtSn = undefined
- this.getArea('city', val)
- },
- // 获取区县列表
- getAreaList (val) {
- this.addrDistrictList = []
- this.queryParam.districtSn = undefined
- this.getArea('district', val)
- },
- // 省/市/区
- getArea (type, sn) {
- let params
- if (type == 'province') {
- params = { level: '1' }
- } else {
- params = { psn: sn }
- }
- getArea(params).then(res => {
- if (res.status == 200) {
- if (type == 'province') {
- this.addrProvinceList = res.data || []
- } else if (type == 'city') {
- this.addrCityList = res.data || []
- } else if (type == 'district') {
- this.addrDistrictList = res.data || []
- }
- } else {
- if (type == 'province') {
- this.addrProvinceList = []
- } else if (type == 'city') {
- this.addrCityList = []
- } else if (type == 'district') {
- this.addrDistrictList = []
- }
- }
- })
- }
- },
- watch: {
- // 父页面传过来的弹框状态
- openModal (newValue, oldValue) {
- this.isShow = newValue
- },
- // 重定义的弹框状态
- isShow (newValue, oldValue) {
- if (!newValue) {
- this.$emit('close')
- } else {
- this.selectedRowKeys = this.chooseCust
- if (this.addrProvinceList.length == 0) {
- this.getArea('province')
- }
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .chooseCustomer-modal{
- .chooseCustomer-con{
- .btn-con{
- text-align: center;
- margin: 30px 0 20px;
- .button-cancel{
- font-size: 12px;
- }
- }
- }
- }
- </style>
|