2024-05-07 04:53:57 +00:00
|
|
|
|
<template>
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<XdPageContainer class="app-container">
|
|
|
|
|
|
<SearchForm slot="pageHeader" :model="queryParams" ref="queryForm" size="mini" :maxShow="10" label-width="100px" v-show="showSearch" @search="handleQuery" @reset="resetQuery">
|
2024-05-07 04:53:57 +00:00
|
|
|
|
|
2024-05-26 09:35:04 +00:00
|
|
|
|
<!-- <AirTable></AirTable> -->
|
|
|
|
|
|
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<el-form-item label="寄件人" prop="customerName">
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="queryParams.customerName"
|
2024-05-26 01:24:20 +00:00
|
|
|
|
:placeholder="$t('寄件人')"
|
2024-05-07 04:53:57 +00:00
|
|
|
|
clearable
|
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2024-05-15 09:28:13 +00:00
|
|
|
|
<el-form-item label="电话" prop="phone">
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="queryParams.phone"
|
|
|
|
|
|
:placeholder="$t('电话')"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2024-05-15 09:28:13 +00:00
|
|
|
|
<el-form-item label="所属国家" prop="country">
|
|
|
|
|
|
<CountryPicker :placeholder="$t('所属国家')" v-model="queryParams.country" ></CountryPicker>
|
|
|
|
|
|
</el-form-item>
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<el-form-item label="所属公司" prop="company">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="queryParams.company"
|
|
|
|
|
|
:placeholder="$t('所属公司')"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2024-05-15 09:28:13 +00:00
|
|
|
|
<el-form-item label="省份" prop="province">
|
|
|
|
|
|
<ProvincePicker v-model="queryParams.province" :countryCode="queryParams.country" ></ProvincePicker>
|
|
|
|
|
|
</el-form-item>
|
2025-06-16 03:13:43 +00:00
|
|
|
|
|
|
|
|
|
|
<el-form-item label="回款联系人" prop="payee" label-width="100px">
|
|
|
|
|
|
<EmpNamePicker1 :placeholder="$t('回款联系人')" v-model="queryParams.payee" ></EmpNamePicker1>
|
2024-05-15 09:28:13 +00:00
|
|
|
|
</el-form-item>
|
2025-06-16 03:13:43 +00:00
|
|
|
|
<el-form-item label="销售联系人" prop="salesmen" label-width="100px">
|
|
|
|
|
|
<EmpNamePicker2 :placeholder="$t('销售联系人')" v-model="queryParams.salesmen" ></EmpNamePicker2>
|
2024-05-15 09:28:13 +00:00
|
|
|
|
</el-form-item>
|
2025-06-16 03:13:43 +00:00
|
|
|
|
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<el-form-item :label="$t('启用状态')" prop="status">
|
|
|
|
|
|
<el-select v-model="queryParams.status" clearable :placeholder="$t('启用状态')" @change="handleQuery">
|
|
|
|
|
|
<el-option key="0" label="停用" :value="0" />
|
|
|
|
|
|
<el-option key="1" label="启用" :value="1" />
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
2024-05-15 09:28:13 +00:00
|
|
|
|
|
2024-05-07 04:53:57 +00:00
|
|
|
|
</SearchForm>
|
|
|
|
|
|
|
2024-06-23 07:22:16 +00:00
|
|
|
|
<!-- slot-scope="slotProps" :height="(slotProps.contentHeight)+'px'" -->
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<XdTable
|
|
|
|
|
|
slot="pageContent"
|
2024-08-28 10:27:34 +00:00
|
|
|
|
slot-scope="slotProps"
|
|
|
|
|
|
:height="(slotProps.contentHeight)+'px'"
|
2024-06-23 07:22:16 +00:00
|
|
|
|
|
2024-05-26 01:24:20 +00:00
|
|
|
|
v-loading="loading"
|
2024-06-24 01:22:55 +00:00
|
|
|
|
border
|
2024-05-07 04:53:57 +00:00
|
|
|
|
size="small"
|
2024-07-14 03:07:43 +00:00
|
|
|
|
storageName="emisCustomerUserList_money"
|
2024-05-07 04:53:57 +00:00
|
|
|
|
:data="emisCustomerUserList"
|
2024-06-23 07:22:16 +00:00
|
|
|
|
:tbData="emisCustomerUserList"
|
2024-05-07 04:53:57 +00:00
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
|
|
:queryParams="queryParams"
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
@queryTable="getList"
|
|
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
|
|
@sort-change="handleSortChange"
|
|
|
|
|
|
>
|
|
|
|
|
|
|
2024-05-26 09:35:04 +00:00
|
|
|
|
|
|
|
|
|
|
<!-- @mousedown.native="down($event)" -->
|
|
|
|
|
|
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<div slot="toolbar">
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
2024-07-14 03:07:43 +00:00
|
|
|
|
<el-col :span="1.5">
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<el-button
|
|
|
|
|
|
type="success"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:disabled="single"
|
|
|
|
|
|
@click="handleUpdate"
|
|
|
|
|
|
v-hasPermi="['emis:emisCustomerUser:edit']"
|
|
|
|
|
|
>修改</el-button>
|
2024-07-14 03:07:43 +00:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:disabled="single"
|
|
|
|
|
|
@click="handleResetPwd"
|
|
|
|
|
|
|
|
|
|
|
|
>密码重置</el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<!-- <el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleAdd"
|
|
|
|
|
|
v-hasPermi="['emis:emisCustomerUser:add']"
|
|
|
|
|
|
>新增客户</el-button>
|
2024-05-07 04:53:57 +00:00
|
|
|
|
</el-col> -->
|
2024-07-14 03:07:43 +00:00
|
|
|
|
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="danger"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:disabled="multiple"
|
|
|
|
|
|
@click="handleDelete"
|
|
|
|
|
|
v-hasPermi="['emis:emisCustomerUser:remove']"
|
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<!-- <el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="warning"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
|
v-hasPermi="['emis:emisCustomerUser:export']"
|
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
|
</el-col> -->
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2024-07-14 03:07:43 +00:00
|
|
|
|
<!-- <el-table-column :label="$t('客户编码')" align="center" prop="customerCode" min-width="100" >
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.customerCode}}</div>
|
|
|
|
|
|
</template>
|
2024-07-14 03:07:43 +00:00
|
|
|
|
</el-table-column> -->
|
2024-05-15 00:48:55 +00:00
|
|
|
|
<el-table-column :label="$t('寄件人')" align="left" prop="customerName" width="120" :show-overflow-tooltip="true" >
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.customerName}}</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-07-14 03:07:43 +00:00
|
|
|
|
<el-table-column :label="$t('微信信息')" align="center" prop="avatar" min-width="100" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div style="height:20px">
|
|
|
|
|
|
<span>{{ scope.row.nickName }}</span>
|
|
|
|
|
|
<img style="height: 100%;max-width:100%;cursor: pointer;" :src="scope.row.avatar" onerror="onerror=null;src='@../../../assets/images/plus.jpg'">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<!-- <el-table-column :label="$t('昵称')" align="center" prop="nickName" min-width="100" /> -->
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<el-table-column :label="$t('所属公司')" align="left" prop="company" width="120" :show-overflow-tooltip="true"/>
|
2024-05-15 00:48:55 +00:00
|
|
|
|
<el-table-column :label="$t('手机号码')" align="center" prop="phone" width="100" />
|
2024-05-07 04:53:57 +00:00
|
|
|
|
|
|
|
|
|
|
<!-- <el-table-column :label="$t('英文简称')" align="center" prop="customerNameEn" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('手机号')" align="center" prop="mobile" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('客户类型')" align="center" prop="customerType" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('结算类型')" align="center" prop="settledType" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('用户类型')" align="center" prop="userType" min-width="100" /> -->
|
2024-07-14 03:07:43 +00:00
|
|
|
|
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<!-- <el-table-column :label="$t('性别')" align="center" prop="sex" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('邀请人')" align="center" prop="invitationInfo" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('最后登录ip')" align="center" prop="loginIp" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('最后登录日期')" align="center" prop="loginDate" min-width="100" /> -->
|
2024-07-14 03:07:43 +00:00
|
|
|
|
<!-- <el-table-column :label="$t('微信OpenId')" align="center" prop="openid" min-width="100" /> -->
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<!-- <el-table-column :label="$t('月结卡号')" align="center" prop="monthlyPayCode" min-width="100" /> -->
|
2024-07-14 03:07:43 +00:00
|
|
|
|
<el-table-column :label="$t('登录账号')" align="center" prop="userName" min-width="100" />
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<!-- <el-table-column :label="$t('登录密码')" align="center" prop="password" min-width="100" /> -->
|
2024-06-05 05:05:54 +00:00
|
|
|
|
<!-- <el-table-column :label="$t('所属站点')" align="center" prop="ownerSiteName" min-width="100" /> -->
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<el-table-column :label="$t('国家')" align="left" prop="countryName" min-width="100" />
|
|
|
|
|
|
<el-table-column :label="$t('省份')" align="left" prop="provinceName" min-width="100" :show-overflow-tooltip="true"/>
|
|
|
|
|
|
<el-table-column :label="$t('城市')" align="left" prop="citeName" min-width="130" :show-overflow-tooltip="true" >
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div >
|
2024-05-26 01:24:20 +00:00
|
|
|
|
{{ scope.row.cityName }} {{ scope.row.countyName }}
|
2024-05-07 04:53:57 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-05-26 01:24:20 +00:00
|
|
|
|
|
2024-06-05 05:05:54 +00:00
|
|
|
|
<el-table-column :label="$t('初次登记网点')" align="center" prop="ownerSiteName" min-width="150" />
|
2024-05-19 19:27:34 +00:00
|
|
|
|
<el-table-column :label="$t('回款联系人')" align="center" prop="payee" min-width="100" />
|
|
|
|
|
|
<el-table-column :label="$t('销售联系人')" align="center" prop="salesmen" min-width="100" />
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<el-table-column label="启用状态" align="center" prop="status" min-width="100" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-tag v-if="scope.row.status==1" type="success">启用</el-tag>
|
|
|
|
|
|
<el-tag v-if="scope.row.status==0" type="danger">停用</el-tag>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<el-table-column :label="$t('数据来源')" align="center" prop="dataFrom" min-width="100" >
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div v-if="scope.row.dataFrom" >
|
|
|
|
|
|
{{ scope.row.dataFrom }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-05-26 01:24:20 +00:00
|
|
|
|
<el-table-column :label="$t('最近下单时间')" align="center" prop="lastOrderTime" min-width="170" />
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<el-table-column :label="$t('数据来源')" align="center" prop="dataFrom" min-width="100" />
|
2024-05-22 17:06:32 +00:00
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" width="80"/>
|
2024-06-02 09:59:42 +00:00
|
|
|
|
<el-table-column label="创建人" align="center" prop="createByName" width="80" :show-overflow-tooltip="true"/>
|
|
|
|
|
|
<el-table-column label="创建网点" align="center" prop="createSiteName" width="80" :show-overflow-tooltip="true"/>
|
2024-05-22 17:06:32 +00:00
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="170"/>
|
2024-06-02 09:59:42 +00:00
|
|
|
|
<el-table-column label="修改人" align="center" prop="updateByName" width="80" :show-overflow-tooltip="true"/>
|
|
|
|
|
|
<el-table-column label="修改网点" align="center" prop="updateSiteName" width="80" :show-overflow-tooltip="true"/>
|
2024-05-22 17:06:32 +00:00
|
|
|
|
<el-table-column label="修改时间" align="center" prop="updateTime" width="170"/>
|
|
|
|
|
|
|
2024-05-07 04:53:57 +00:00
|
|
|
|
<!-- <el-table-column :label="$t('排序')" align="center" prop="orderNum" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('备注')" align="center" prop="remark" min-width="100" /> -->
|
|
|
|
|
|
<!-- <el-table-column :label="$t('删除标志(0代表存在')" align="center" prop="delFlag" min-width="100" /> -->
|
2024-08-28 10:27:34 +00:00
|
|
|
|
|
2024-05-07 04:53:57 +00:00
|
|
|
|
</XdTable>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog :title="titleForm" :visible.sync="openForm" width="60%" :destroy-on-close="true" :close-on-click-modal="false" v-dialogDrag append-to-body>
|
2024-05-13 04:36:25 +00:00
|
|
|
|
<moneyUserForm :id="currentId" customerType="1" @on-changed="handleFormChanged" @on-cancel="cancelForm"></moneyUserForm>
|
2024-05-07 04:53:57 +00:00
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
2024-05-26 01:24:20 +00:00
|
|
|
|
</XdPageContainer>
|
2024-05-07 04:53:57 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-05-26 09:35:04 +00:00
|
|
|
|
|
|
|
|
|
|
import AirTable from '@/components/AirTable/demo.vue';
|
|
|
|
|
|
|
2024-07-14 03:07:43 +00:00
|
|
|
|
import { listMoneyUser, delEmisCustomerUser,resetCustomerUserPwd } from "@/api/emis/emisCustomerUser";
|
2024-05-07 04:53:57 +00:00
|
|
|
|
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
|
2024-05-13 04:36:25 +00:00
|
|
|
|
import moneyUserForm from '@/views/emis/emisCustomerUser/moneyUserForm';
|
2024-05-07 04:53:57 +00:00
|
|
|
|
|
2024-05-15 09:28:13 +00:00
|
|
|
|
import EmisSiteSimplePicker from '@/views/emis/EmisBaseTools/EmisSiteSimplePicker.vue';
|
|
|
|
|
|
import CountryPicker from '@/views/emis/EmisBaseTools/CountryPicker.vue';
|
|
|
|
|
|
import ProvincePicker from '@/views/emis/EmisBaseTools/ProvincePicker.vue';
|
|
|
|
|
|
import CityPicker from '@/views/emis/EmisBaseTools/CityPicker.vue';
|
|
|
|
|
|
|
|
|
|
|
|
import EmisUserSimplePicker0 from '@/views/emis/EmisBaseTools/EmisUserSimplePicker.vue';
|
|
|
|
|
|
import EmisUserSimplePicker1 from '@/views/emis/EmisBaseTools/EmisUserSimplePicker.vue';
|
|
|
|
|
|
import EmisUserSimplePicker2 from '@/views/emis/EmisBaseTools/EmisUserSimplePicker.vue';
|
|
|
|
|
|
|
2025-06-16 03:13:43 +00:00
|
|
|
|
import EmpNamePicker1 from '@/views/emis/EmisBaseTools/EmpNamePicker.vue';
|
|
|
|
|
|
import EmpNamePicker2 from '@/views/emis/EmisBaseTools/EmpNamePicker.vue';
|
2024-05-15 09:28:13 +00:00
|
|
|
|
|
2025-07-07 02:07:52 +00:00
|
|
|
|
import XdTable3 from '@/components/XdTable/index3.vue';
|
|
|
|
|
|
|
2024-05-07 04:53:57 +00:00
|
|
|
|
export default {
|
2024-06-26 23:31:39 +00:00
|
|
|
|
name: "MoneyUserList",
|
2025-06-16 03:13:43 +00:00
|
|
|
|
components: {AirTable, EmpNamePicker1,EmpNamePicker2,elDateSimplePicker,moneyUserForm ,CountryPicker,
|
2024-05-15 09:28:13 +00:00
|
|
|
|
EmisSiteSimplePicker,ProvincePicker,CityPicker,
|
2025-07-07 02:07:52 +00:00
|
|
|
|
EmisUserSimplePicker0,EmisUserSimplePicker1,EmisUserSimplePicker2,XdTable3
|
2024-05-15 09:28:13 +00:00
|
|
|
|
},
|
2024-05-07 04:53:57 +00:00
|
|
|
|
dicts: [
|
|
|
|
|
|
],
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
|
loading: true,
|
|
|
|
|
|
// 选中数组
|
|
|
|
|
|
ids: [],
|
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
|
single: true,
|
|
|
|
|
|
// 非多个禁用
|
|
|
|
|
|
multiple: true,
|
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
|
showSearch: true,
|
|
|
|
|
|
// 创建时间搜索
|
|
|
|
|
|
dateTimeRange:[],
|
|
|
|
|
|
// 总条数
|
|
|
|
|
|
total: 0,
|
|
|
|
|
|
// 快递客户用户表格数据
|
|
|
|
|
|
emisCustomerUserList: [],
|
|
|
|
|
|
|
|
|
|
|
|
currentId:null,
|
|
|
|
|
|
openForm: false,
|
|
|
|
|
|
titleForm: "",
|
|
|
|
|
|
|
|
|
|
|
|
// 弹出展示层
|
|
|
|
|
|
id:null,
|
|
|
|
|
|
titleView:"",
|
|
|
|
|
|
openView: false,
|
|
|
|
|
|
// 修改站点代码时间范围
|
|
|
|
|
|
daterangeCreateTime: [],
|
|
|
|
|
|
// 修改站点代码时间范围
|
|
|
|
|
|
daterangeUpdateTime: [],
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 20,
|
|
|
|
|
|
customerName: null,
|
|
|
|
|
|
customerType:1,
|
|
|
|
|
|
phone: null,
|
|
|
|
|
|
company: null,
|
|
|
|
|
|
},
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
/** 查询快递客户用户列表 */
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
this.queryParams.params = {};
|
|
|
|
|
|
if (null != this.daterangeCreateTime && '' != this.daterangeCreateTime) {
|
|
|
|
|
|
this.queryParams.params["beginCreateTime"] = this.daterangeCreateTime[0];
|
|
|
|
|
|
this.queryParams.params["endCreateTime"] = this.daterangeCreateTime[1];
|
|
|
|
|
|
}
|
|
|
|
|
|
if (null != this.daterangeUpdateTime && '' != this.daterangeUpdateTime) {
|
|
|
|
|
|
this.queryParams.params["beginUpdateTime"] = this.daterangeUpdateTime[0];
|
|
|
|
|
|
this.queryParams.params["endUpdateTime"] = this.daterangeUpdateTime[1];
|
|
|
|
|
|
}
|
2024-05-22 21:09:47 +00:00
|
|
|
|
listMoneyUser(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
|
2024-05-07 04:53:57 +00:00
|
|
|
|
this.emisCustomerUserList = response.rows;
|
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
handleQuery() {
|
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
resetQuery() {
|
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
|
},
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
|
this.ids = selection.map(item => item.id)
|
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
|
},
|
|
|
|
|
|
// 排序 查询字段是表格中字段名字 动态取值排序顺序
|
|
|
|
|
|
handleSortChange(column) {
|
|
|
|
|
|
this.queryParams.orderByColumn = column.prop;
|
|
|
|
|
|
this.queryParams.isAsc = column.order;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
|
handleAdd(row) {
|
|
|
|
|
|
this.currentId=null;
|
|
|
|
|
|
this.openForm= true;
|
2024-06-26 23:31:39 +00:00
|
|
|
|
this.titleForm = "现金客户";
|
2024-05-07 04:53:57 +00:00
|
|
|
|
},
|
|
|
|
|
|
handleShowMoreInput(){
|
|
|
|
|
|
this.moreInputVisible = !this.moreInputVisible;
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
|
handleUpdate(row) {
|
2024-07-14 04:27:21 +00:00
|
|
|
|
this.currentId= row.id || this.ids[0];
|
2024-05-07 04:53:57 +00:00
|
|
|
|
this.openForm = true;
|
2024-06-26 23:31:39 +00:00
|
|
|
|
this.titleForm = "现金客户";
|
2024-07-14 03:07:43 +00:00
|
|
|
|
},
|
|
|
|
|
|
/** 重置密码按钮操作 */
|
|
|
|
|
|
handleResetPwd(row) {
|
|
|
|
|
|
const id= row.id || this.ids[0];
|
|
|
|
|
|
|
|
|
|
|
|
this.$confirm('密码将重置为初始密码:888888 吗?', '提示', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
resetCustomerUserPwd(id,'888888').then(response => {
|
|
|
|
|
|
this.$modal.msgSuccess("重置成功");
|
|
|
|
|
|
});
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
})
|
2024-05-07 04:53:57 +00:00
|
|
|
|
},
|
|
|
|
|
|
handleView(row) {
|
|
|
|
|
|
this.id=row.id;
|
|
|
|
|
|
this.titleView="查看";
|
|
|
|
|
|
this.openView=true;
|
|
|
|
|
|
// this.router.push({ path: '/emis/emisCustomerUser/viewDetail', query: { id: row.id }})
|
|
|
|
|
|
},
|
|
|
|
|
|
handleFormChanged(){
|
|
|
|
|
|
this.openForm = false;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
cancelForm(){
|
|
|
|
|
|
this.openForm = false;
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
|
handleDelete(row) {
|
|
|
|
|
|
const ids = row.id || this.ids;
|
|
|
|
|
|
this.$modal.confirm('是否确认删除').then(function() {
|
|
|
|
|
|
return delEmisCustomerUser(ids);
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
|
handleExport() {
|
|
|
|
|
|
// this.download('emis/emisCustomerUser/export', {
|
|
|
|
|
|
// ...this.queryParams
|
|
|
|
|
|
// }, `emisCustomerUser_${new Date().getTime()}.xlsx`)
|
|
|
|
|
|
const loadingInstance = this.$loading({
|
|
|
|
|
|
text: '正在导出...'
|
|
|
|
|
|
})
|
|
|
|
|
|
var qParam = {...this.queryParams};
|
|
|
|
|
|
qParam.pageNum=1;
|
|
|
|
|
|
qParam.pageSize=5000;
|
|
|
|
|
|
|
|
|
|
|
|
listEmisCustomerUser(this.addDateRange(qParam, this.dateTimeRange)).then(response => {
|
|
|
|
|
|
this.downloadLoading = false
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
const curList = response.rows
|
|
|
|
|
|
import('@/vendor/Export2Excel').then(excel => {
|
|
|
|
|
|
const tHeader = ['id','客户编码','客户名称','英文简称','电话','手机号','客户类型','结算类型','用户类型','所属公司','部门id','头像','性别','邀请人','最后登录ip','最后登录日期','称呼','union_id','wxopenid','主月结卡号','登录账号','登录密码','归属站点','国家','省份','城市','区县','镇','地址','email','发件国','发件省','发件区','发件区','发件镇','邮编','启用状态','真实姓名','身份证号','回款联系人','销售联系人','是否开通oms','是否短信','专属业务员','排序','备注','删除标志(0代表存在','创建者','创建时间','更新者','更新时间','创建网点','修改站点代码',];
|
|
|
|
|
|
const filterVal = ['id','customerCode','customerName','customerNameEn','phone','mobile','customerType','settledType','userType','company','deptId','avatar','sex','invitationInfo','loginIp','loginDate','nickName','unionId','openid','monthlyPayCode','userName','password','ownerSite','country','province','city','county','town','address','email','sendCountry','sendProvince','sendCity','sendCounty','sendTown','postCode','status','realName','idNo','payee','salesmen','blOpenOms','blSms','opEmpCode','orderNum','remark','delFlag','createBy','createTime','updateBy','updateTime','createSite','updateSite',];
|
|
|
|
|
|
const data = this.formatJson(filterVal, curList, response.rows)
|
|
|
|
|
|
excel.export_json_to_excel({
|
|
|
|
|
|
header: tHeader,
|
|
|
|
|
|
data,
|
|
|
|
|
|
filename: '快递客户用户',
|
|
|
|
|
|
autoWidth: true
|
|
|
|
|
|
})
|
|
|
|
|
|
loadingInstance.close()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
formatJson(filterVal, jsonData, resData) {
|
|
|
|
|
|
let index = 0
|
|
|
|
|
|
return jsonData.map(v => filterVal.map(j => {
|
|
|
|
|
|
if (j === 'index') {
|
|
|
|
|
|
return ++index
|
|
|
|
|
|
}
|
|
|
|
|
|
if (j === 'status') {
|
|
|
|
|
|
var statusStr='xxx'
|
|
|
|
|
|
if(v[j] == 10){
|
|
|
|
|
|
statusStr='xxx'
|
|
|
|
|
|
}
|
|
|
|
|
|
return statusStr;
|
|
|
|
|
|
}
|
|
|
|
|
|
return v[j]
|
|
|
|
|
|
}))
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 列索引函数 */
|
|
|
|
|
|
getIndex($index) {
|
|
|
|
|
|
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 时间搜索响应函数 */
|
|
|
|
|
|
dateTimeChange(value){
|
|
|
|
|
|
this.dateTimeRange=value;
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.el-divider{
|
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
|
background: 0 0;
|
|
|
|
|
|
border-top: 1px solid #E6EBF5;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-divider__text {
|
|
|
|
|
|
color: #0955ee;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|