Commit e9191f65 by liuchenxi

update: 会员标签

parent 7c73fc61
......@@ -148,6 +148,7 @@ export default {
},
methods: {
closePop() {
this.optionsThree = [];
this.$refs.ruleForm.resetFields();
this.$emit('update:showPop', false);
},
......@@ -232,6 +233,7 @@ export default {
this.optionsTwo = result;
if (currentType == 'active' && !this.isEdit) {
this.ruleForm.tagTwoLevelGroupId = result.find(el => el.name === '渠道标签').id;
this.getOptionsThree(this.ruleForm.tagTwoLevelGroupId);
}
}
})
......
......@@ -38,8 +38,8 @@
<el-table-column label="创建时间" prop="createTime" min-width="90">
<template slot-scope="{ row }">
<template v-if="row.createTime">
<p>{{ dateformat(row.createTime, 'yyyy-MM-dd') }}</p>
<p>{{ dateformat(row.createTime, 'hh:mm:ss') }}</p>
<p>{{ dateformat(new Date(row.createTime), 'yyyy-MM-dd') }}</p>
<p>{{ dateformat(new Date(row.createTime), 'hh:mm:ss') }}</p>
</template>
<span v-else>--</span>
</template>
......
......@@ -58,8 +58,8 @@
<el-table-column label="创建时间" prop="createTime" min-width="100">
<template slot-scope="{ row }">
<template v-if="row.createTime">
<p>{{ dateformat(row.createTime, 'yyyy-MM-dd') }}</p>
<p>{{ dateformat(row.createTime, 'hh:mm:ss') }}</p>
<p>{{ dateformat(new Date(row.createTime), 'yyyy-MM-dd') }}</p>
<p>{{ dateformat(new Date(row.createTime), 'hh:mm:ss') }}</p>
</template>
<span v-else>--</span>
</template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment