Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
member
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
member
member
Commits
499fe2f4
Commit
499fe2f4
authored
Nov 23, 2021
by
chenyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: style
parent
8b9870af
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
24 additions
and
36 deletions
+24
-36
allCustomersList.vue
src/components/allCustomers/allCustomersList.vue
+1
-1
baseinfoDialog.vue
src/components/allCustomers/components/baseinfoDialog.vue
+12
-6
batchgradeDialog.vue
src/components/allCustomers/components/batchgradeDialog.vue
+2
-2
customergradeDialog.vue
...omponents/allCustomers/components/customergradeDialog.vue
+1
-1
customerlabelDialog.vue
...omponents/allCustomers/components/customerlabelDialog.vue
+0
-18
customermainstoreDialog.vue
...nents/allCustomers/components/customermainstoreDialog.vue
+1
-1
customersubstoreDialog.vue
...onents/allCustomers/components/customersubstoreDialog.vue
+2
-2
integralDialog.vue
src/components/allCustomers/components/integralDialog.vue
+2
-2
mainstoreDialog.vue
src/components/allCustomers/components/mainstoreDialog.vue
+2
-2
substoreDialog.vue
src/components/allCustomers/components/substoreDialog.vue
+1
-1
No files found.
src/components/allCustomers/allCustomersList.vue
View file @
499fe2f4
...
...
@@ -88,7 +88,7 @@
:
class
=
"row.wxStatus == 0 ? 'xcxicongray' : row.wxStatus == 1 ? 'xcxicon' : ''"
><
/span
>
<
span
:
title
=
"row.status == 0 ? '取消关注公众号' : row.status == 1 ? '已关注公众号' : '未关注公众号'"
class
=
"channelicon"
:
class
=
"row.status == 0 ? 'gzhiconcanclegray' : row.
S
tatus == 1 ? 'gzhicon' : 'gzhicongray'"
><
/span
>
:
class
=
"row.status == 0 ? 'gzhiconcanclegray' : row.
s
tatus == 1 ? 'gzhicon' : 'gzhicongray'"
><
/span
>
<
/span
>
<!--
关联渠道
-->
<
span
v
-
else
-
if
=
"colum == 'channel'"
>
...
...
src/components/allCustomers/components/baseinfoDialog.vue
View file @
499fe2f4
...
...
@@ -11,6 +11,7 @@
<el-select
v-model=
"form.memberGender"
placeholder=
"请选择"
style=
"width: 252px;"
>
<el-option
label=
"男"
:value=
"1"
></el-option>
<el-option
label=
"女"
:value=
"2"
></el-option>
<el-option
label=
"未知"
:value=
"0"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"出生日期:"
prop=
"memberBirthday"
>
...
...
@@ -27,13 +28,13 @@
<el-option
v-for=
"item in nationCodeList"
:key=
"item.dictCode"
:value=
"item.dictCode"
:label=
"item.dictName"
></el-option>
</el-select>
<el-form-item
prop=
"phoneNumber"
style=
"display:inline-block"
>
<el-form-item
prop=
"phoneNumber"
style=
"display:inline-block"
class=
"gray-phone-error"
>
<el-input
v-model=
"form.phoneNumber"
style=
"width: 270px"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 386px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 386px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
@@ -73,6 +74,7 @@ export default {
var
validateTel
=
(
rule
,
value
,
callback
)
=>
{
if
(
value
===
""
)
{
callback
(
new
Error
(
"请输入号码"
));
// return callback();
}
else
if
(
value
.
indexOf
(
'*'
)
==
-
1
)
{
if
(
!
this
.
form
.
nationCode
)
{
this
.
form
.
nationCode
=
"86"
;
...
...
@@ -122,7 +124,7 @@ export default {
birthType
:
1
,
remark
:
''
,
phoneNumber
:
''
,
nationCode
:
''
nationCode
:
'
86
'
},
rules
:
{
remark
:
[
{
required
:
true
,
message
:
"请输入原因备注"
,
trigger
:
"blur"
}
],
...
...
@@ -177,8 +179,8 @@ export default {
memberBirthday
,
birthType
,
remark
,
phoneNumber
,
nationCode
}
=
this
.
baseInfo
;
phoneNumber
}
=
this
.
baseInfo
;
this
.
form
=
Object
.
assign
({},
this
.
form
,
{
memberId
,
memberName
,
...
...
@@ -187,7 +189,7 @@ export default {
birthType
,
remark
,
phoneNumber
,
nationCode
nationCode
:
this
.
baseInfo
.
nationCode
||
'86'
});
this
.
$refs
[
'form'
].
clearValidate
();
}
...
...
@@ -205,5 +207,8 @@ export default {
}
.customer-dailog
.el-dialog__body
{
padding-bottom
:
0
;
.gray-phone-error.is-error
.el-form-item__error
{
color
:
#c0c4cc
;
}
}
</
style
>
\ No newline at end of file
src/components/allCustomers/components/batchgradeDialog.vue
View file @
499fe2f4
...
...
@@ -18,7 +18,7 @@
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 400px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 400px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
@@ -118,7 +118,7 @@ export default {
})
.
catch
(
err
=>
{
checkStatus
(
err
);
}).
finally
(
_
=>
this
.
btnLoading
=
false
);
}).
finally
(
_
=>
this
.
btnLoading
=
false
);
}
else
{
return
false
;
}
...
...
src/components/allCustomers/components/customergradeDialog.vue
View file @
499fe2f4
...
...
@@ -11,7 +11,7 @@
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 386px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 386px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
src/components/allCustomers/components/customerlabelDialog.vue
View file @
499fe2f4
...
...
@@ -71,17 +71,6 @@ export default {
},
data
()
{
return
{
form
:
{
memberId
:
''
},
rules
:
{
gradeId
:
[
{
required
:
true
,
message
:
"请选择修改后等级"
,
trigger
:
"change"
}
],
remark
:
[
{
required
:
true
,
message
:
"请输入原因备注"
,
trigger
:
"change"
}
],
},
tabsList
:
[
{
name
:
'clerk'
,
label
:
'导购标签'
},
{
name
:
'other'
,
label
:
'其他标签'
},
...
...
@@ -215,13 +204,6 @@ export default {
checkStatus
(
err
);
}).
finally
(
_
=>
this
.
btnLoading
=
false
);
},
},
watch
:
{
dialogVisible
(
n
,
o
)
{
if
(
n
)
{
this
.
form
.
mamberId
=
this
.
mamberId
;
}
}
}
};
...
...
src/components/allCustomers/components/customermainstoreDialog.vue
View file @
499fe2f4
...
...
@@ -19,7 +19,7 @@
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 386px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 386px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
src/components/allCustomers/components/customersubstoreDialog.vue
View file @
499fe2f4
...
...
@@ -17,7 +17,7 @@
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 386px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 386px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
@@ -141,7 +141,7 @@ export default {
if
(
n
)
{
const
{
shopNames
,
memberId
}
=
this
.
obj
;
let
storeIds
=
shopNames
.
map
(
item
=>
item
.
storeId
);
this
.
subStoreList
=
[].
concat
(
shopNames
)
this
.
subStoreList
=
[].
concat
(
shopNames
);
this
.
form
=
Object
.
assign
({},
this
.
form
,
{
memberId
,
storeIds
,
subStoreIdsBak
:
storeIds
.
join
(
','
)
});
}
}
...
...
src/components/allCustomers/components/integralDialog.vue
View file @
499fe2f4
...
...
@@ -28,7 +28,7 @@
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 400px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 400px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
@@ -150,7 +150,7 @@ export default {
})
.
catch
(
err
=>
{
checkStatus
(
err
);
}).
finally
(
_
=>
this
.
btnLoading
=
false
);
}).
finally
(
_
=>
this
.
btnLoading
=
false
);
}
else
{
return
false
;
}
...
...
src/components/allCustomers/components/mainstoreDialog.vue
View file @
499fe2f4
...
...
@@ -16,7 +16,7 @@
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 382px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 382px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
@@ -132,7 +132,7 @@ export default {
})
.
catch
(
err
=>
{
checkStatus
(
err
);
}).
finally
(
_
=>
this
.
btnLoading
=
false
);
}).
finally
(
_
=>
this
.
btnLoading
=
false
);
}
else
{
return
false
;
}
...
...
src/components/allCustomers/components/substoreDialog.vue
View file @
499fe2f4
...
...
@@ -28,7 +28,7 @@
</el-form-item>
<el-form-item
label=
"原因备注:"
prop=
"remark"
>
<el-input
type=
"text"
maxlength=
"20"
show-word-limit
v-model=
"form.remark"
style=
"width: 386px;"
></el-input>
placeholder=
"请输入内容"
style=
"width: 386px;"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment