Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
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
marketing-web
marketing
Commits
f12b1004
Commit
f12b1004
authored
Nov 11, 2018
by
zhangmeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
迭代
parent
d7178f38
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
index.html
dist/index.html
+2
-2
app.a33f1bc35b3efdeb93b9.js
dist/static/js/app.a33f1bc35b3efdeb93b9.js
+0
-0
addEdit.vue
src/views/ecm/addEdit.vue
+2
-2
batch-dialog.vue
src/views/ecm/batch-dialog.vue
+1
-1
No files found.
dist/index.html
View file @
f12b1004
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"width=device-width,initial-scale=1"
><link
rel=
"shortcut icon"
href=
./static/img/favicon.ico
><title>
GIC后台
</title><link
rel=
stylesheet
type=
text/css
href=
static/css/iconfont.css
><link
rel=
stylesheet
type=
text/css
href=
static/css/common.css
><link
href=
/marketing/static/css/app.d0886508ad61ad5a266f66279df4830a.css
rel=
stylesheet
></head><body><div
id=
app
></div><script
type=
text/javascript
src=
/marketing/static/js/manifest.0a85049e489e85ac5f0a.js
></script><script
type=
text/javascript
src=
/marketing/static/js/vendor.787ad27b46bfcbf5e833.js
></script><script
type=
text/javascript
src=
/marketing/static/js/app.c15e202ed43e7bfd0db8.js
></script></body></html>
\ No newline at end of file
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"width=device-width,initial-scale=1"
><link
rel=
"shortcut icon"
href=
./static/img/favicon.ico
><title>
GIC后台
</title><link
rel=
stylesheet
type=
text/css
href=
static/css/iconfont.css
><link
rel=
stylesheet
type=
text/css
href=
static/css/common.css
><link
href=
/marketing/static/css/app.d0886508ad61ad5a266f66279df4830a.css
rel=
stylesheet
></head><body><div
id=
app
></div><script
type=
text/javascript
src=
/marketing/static/js/manifest.0a85049e489e85ac5f0a.js
></script><script
type=
text/javascript
src=
/marketing/static/js/vendor.787ad27b46bfcbf5e833.js
></script><script
type=
text/javascript
src=
/marketing/static/js/app.a33f1bc35b3efdeb93b9.js
></script></body></html>
\ No newline at end of file
dist/static/js/app.
c15e202ed43e7bfd0db8
.js
→
dist/static/js/app.
a33f1bc35b3efdeb93b9
.js
View file @
f12b1004
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/views/ecm/addEdit.vue
View file @
f12b1004
...
...
@@ -43,7 +43,7 @@
</section>
<section
class=
"dm-form__wrap"
>
<h3
class=
"dm-title__label"
>
有效时间
</h3>
<el-form-item
label=
"有效时间"
prop=
"endDate"
:show-message=
"showMessage"
error=
"开始时间不能大于结束时间"
>
<el-form-item
label=
"有效时间"
prop=
"endDate"
:show-message=
"showMessage"
>
<el-radio
v-model=
"form.expireType"
:label=
"0"
>
长期有效
</el-radio>
<el-radio
v-model=
"form.expireType"
:label=
"1"
>
固定期限
</el-radio>
<el-date-picker
class=
"ml10"
v-if=
"form.expireType"
...
...
@@ -369,7 +369,7 @@ export default {
let
beginDate
=
this
.
form
.
beginDate
&&
new
Date
(
this
.
form
.
beginDate
);
let
endDate
=
this
.
form
.
endDate
&&
new
Date
(
this
.
form
.
endDate
);
if
(
this
.
form
.
expireType
&&
beginDate
&&
endDate
&&
(
beginDate
.
getTime
()
>
endDate
.
getTime
()))
{
//
this.$tips({type:'warning',message:'开始时间不能大于结束时间'});
this
.
$tips
({
type
:
'warning'
,
message
:
'开始时间不能大于结束时间'
});
// this.form.beginDate = this.form.endDate;
this
.
showMessage
=
true
;
return
true
;
...
...
src/views/ecm/batch-dialog.vue
View file @
f12b1004
<
template
>
<el-dialog
title=
"回复"
:visible
.
sync=
"show"
width=
"80%"
:before-close=
"close"
>
<div
class=
"pb22 clearfix"
>
<el-input
v-model=
"listParams.memberInfo"
class=
"w200"
placeholder=
"输入会员昵称/名字"
clearable
@
change=
"search"
><i
slot=
"prefix"
class=
"el-input__icon el-icon-search"
></i></el-input>
<el-input
v-model=
"listParams.memberInfo"
class=
"w200"
placeholder=
"输入会员昵称/名字
/手机号
"
clearable
@
change=
"search"
><i
slot=
"prefix"
class=
"el-input__icon el-icon-search"
></i></el-input>
<el-select
class=
"dm-select"
clearable
v-model=
"listParams.success"
placeholder=
"所有条件"
@
change=
"search"
>
<el-option
v-for=
"(v,i) in successOptions"
:key=
"i"
:label=
"v.label"
:value=
"v.value"
></el-option>
</el-select>
...
...
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