jinhui.wang

接口增加,状态修改

1 +import request from '@/utils/request'
2 +
3 +// 查询客户数据
4 +/**
5 + * @param clientId 客户ID
6 + * @param ecomEntCode 电商企业代码
7 + * @param ecomEntEmail 电商企业邮箱
8 + * @param ecomEntName 电商企业名称
9 + * @param endCreationTime 结束创建时间
10 + * @param startCreationTime开始创建时间
11 + * @param pageIndex *
12 + * @param pageSize *
13 + */
14 +export function getCustomerList(data) {
15 + return request({
16 + url: '/bus-customer/customers/getCustomerList',
17 + method: 'post',
18 + data: data
19 + })
20 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
30 resize="none" 30 resize="none"
31 v-model="formData.cipherMachineNumber" 31 v-model="formData.cipherMachineNumber"
32 clearable 32 clearable
33 + :disabled="type == 'update'"
33 placeholder="" 34 placeholder=""
34 ></el-input> 35 ></el-input>
35 </Formitem> 36 </Formitem>
...@@ -62,6 +63,7 @@ ...@@ -62,6 +63,7 @@
62 resize="none" 63 resize="none"
63 v-model="formData.availableUserCount" 64 v-model="formData.availableUserCount"
64 clearable 65 clearable
66 + :disabled="type == 'update'"
65 oninput="value=value.replace(/[^0-9]/g,'')" 67 oninput="value=value.replace(/[^0-9]/g,'')"
66 placeholder="" 68 placeholder=""
67 ></el-input> 69 ></el-input>
......
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
30 resize="none" 30 resize="none"
31 v-model="formData.portCode" 31 v-model="formData.portCode"
32 clearable 32 clearable
33 + :disabled="type == 'update'"
33 placeholder="" 34 placeholder=""
34 ></el-input> 35 ></el-input>
35 </Formitem> 36 </Formitem>
......