diff --git a/src/pages/index/customer/customer_list/components/AddCustomerDialog.vue b/src/pages/index/customer/customer_list/components/AddCustomerDialog.vue
index 3e50e43..e48e476 100644
--- a/src/pages/index/customer/customer_list/components/AddCustomerDialog.vue
+++ b/src/pages/index/customer/customer_list/components/AddCustomerDialog.vue
@@ -10,8 +10,8 @@
-
-
+
+
@@ -24,11 +24,6 @@
-
-
-
-
-
@@ -119,18 +114,18 @@ const rules = reactive({
message: '客户昵称不能为空'
}
],
- customer_account: [
- {
- required: true,
- message: '客户账号不能为空'
- }
- ],
customer_password: [
{
required: true,
message: '客户密码不能为空'
}
],
+ customer_email: [
+ {
+ required: true,
+ message: '客户邮箱不能为空'
+ }
+ ],
});
diff --git a/src/pages/index/customer/customer_list/components/DetailCustomerDialog.vue b/src/pages/index/customer/customer_list/components/DetailCustomerDialog.vue
index 75599ab..0834982 100644
--- a/src/pages/index/customer/customer_list/components/DetailCustomerDialog.vue
+++ b/src/pages/index/customer/customer_list/components/DetailCustomerDialog.vue
@@ -10,8 +10,8 @@
-
-
+
+
@@ -19,11 +19,6 @@
-
-
-
-
-
@@ -38,6 +33,11 @@
style='--el-switch-on-color: #ff4949;' />
+
+
+
+
+
diff --git a/src/pages/index/customer/customer_list/components/EditCustomerDialog.vue b/src/pages/index/customer/customer_list/components/EditCustomerDialog.vue
index d0ff118..b6e30c9 100644
--- a/src/pages/index/customer/customer_list/components/EditCustomerDialog.vue
+++ b/src/pages/index/customer/customer_list/components/EditCustomerDialog.vue
@@ -10,8 +10,8 @@
-
-
+
+
@@ -19,11 +19,6 @@
-
-
-
-
-
@@ -127,12 +122,6 @@ const rules = reactive({
message: '客户昵称不能为空'
}
],
- customer_account: [
- {
- required: true,
- message: '客户账号不能为空'
- }
- ],
});
const handleEditClick = async (formEl) => {
diff --git a/src/pages/index/customer/customer_list/components/EditPswDialog.vue b/src/pages/index/customer/customer_list/components/EditPswDialog.vue
index 9108b5f..b335945 100644
--- a/src/pages/index/customer/customer_list/components/EditPswDialog.vue
+++ b/src/pages/index/customer/customer_list/components/EditPswDialog.vue
@@ -3,12 +3,12 @@
-
+
-
-
+
+
diff --git a/src/pages/index/customer/customer_list/index.vue b/src/pages/index/customer/customer_list/index.vue
index 648b683..59eea13 100644
--- a/src/pages/index/customer/customer_list/index.vue
+++ b/src/pages/index/customer/customer_list/index.vue
@@ -11,15 +11,12 @@
-
-
+
+
-
-
-
+
+
+
搜索
@@ -60,7 +61,7 @@
+ :params="params" border :request="params => getCustomerList(params)">
@@ -139,12 +140,11 @@ const headers = {
// 查询参数
const params = reactive({
customer_name: "",
- customer_account: "",
customer_phone: "",
customer_email: "",
customer_sex: "",
customer_blacklist: "",
-
+ date_time: "",
});
const column = [
@@ -157,31 +157,31 @@ const column = [
label: '客户昵称',
width: '150'
},
- {
- prop: "customer_account",
- label: '客户账号',
- width: '150'
- },
- {
- prop: "customer_phone",
- label: '客户手机号',
- width: '150'
- },
{
prop: "customer_email",
label: '客户邮箱',
- width: '150'
- },
- {
- prop: "customer_sex",
- label: '客户性别',
- width: '150'
+ width: '200'
},
+ // {
+ // prop: "customer_phone",
+ // label: '客户手机号',
+ // width: '200'
+ // },
+ // {
+ // prop: "customer_sex",
+ // label: '客户性别',
+ // width: '150'
+ // },
{
prop: "customer_blacklist",
label: '黑名单',
width: '150'
},
+ {
+ prop: "customer_create_time",
+ label: '注册时间',
+ width: '200'
+ },
{
label: '操作',
prop: 'chaoz',