# v1.3 更新列表
1. 【新增】砍价
2. 【新增】拼团
3. 【新增】一号通
4. 【修复】商品sku 编辑时出现商品属性对应错误的问题
5. 【修复】商品推广海报生成二维码可能会出错的问题【小程序调试中】
6. 【修复】微信公众号和小程序头像可能获取不到的问题
7. 【修复】下单时可能会出错的问题
8. 【修复】pc管理端用户访问量
9. 【修复】微信退款
10. 【修复】管理端订单状态可能出现不正确的情况
11. 【修复】WEB管理端-菜单色调,短信API更新,首页用户访问量,系统设置tab是自动选择下一及表单
12. 【修复】系统设置出现更新不正确的问题
208 lines
5.0 KiB
Vue
208 lines
5.0 KiB
Vue
<template>
|
|
<!--v-if="isLogin"-->
|
|
<div class="divBox" v-if="isLogin">
|
|
<el-card v-loading="fullscreenLoading" class="box-card">
|
|
<div slot="header" class="clearfix">
|
|
<div class="container">
|
|
<router-link :to="{path:'/operation/onePass'}">
|
|
<el-button class="mb35" size="mini" icon="el-icon-arrow-left">返回</el-button>
|
|
</router-link>
|
|
</div>
|
|
<el-button size="mini" type="primary" @click="add">添加短信模板</el-button>
|
|
</div>
|
|
<el-table
|
|
v-loading="listLoading"
|
|
:data="tableData.data"
|
|
style="width: 100%"
|
|
size="mini"
|
|
highlight-current-row
|
|
>
|
|
<el-table-column
|
|
prop="id"
|
|
label="ID"
|
|
min-width="50"
|
|
/>
|
|
<el-table-column
|
|
prop="temp_id"
|
|
label="模板ID"
|
|
min-width="80"
|
|
/>
|
|
<el-table-column
|
|
prop="title"
|
|
label="模板名称"
|
|
min-width="120"
|
|
/>
|
|
<el-table-column
|
|
prop="content"
|
|
label="模板内容"
|
|
min-width="500"
|
|
/>
|
|
<el-table-column
|
|
label="模板类型"
|
|
min-width="100"
|
|
>
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.temp_type | typesFilter }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="模板状态">
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.status | statusFilter }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="block">
|
|
<el-pagination
|
|
:page-sizes="[20, 40, 60, 80]"
|
|
:page-size="tableFrom.limit"
|
|
:current-page="tableFrom.page"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
:total="tableData.total"
|
|
@size-change="handleSizeChange"
|
|
@current-change="pageChange"
|
|
/>
|
|
</div>
|
|
</el-card>
|
|
|
|
<!--编辑-->
|
|
<el-dialog
|
|
title="添加模板"
|
|
:visible.sync="dialogVisible"
|
|
width="500px"
|
|
:before-close="handleClose">
|
|
<zb-parser
|
|
v-if="dialogVisible"
|
|
:form-id="110"
|
|
:is-create="isCreate"
|
|
:edit-data="editData"
|
|
@submit="handlerSubmit"
|
|
@resetForm="resetForm"
|
|
/>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { smsTempLstApi, tempCreateApi } from '@/api/sms'
|
|
import { roterPre } from '@/settings'
|
|
import { mapGetters } from 'vuex'
|
|
import zbParser from '@/components/FormGenerator/components/parser/ZBParser'
|
|
export default {
|
|
name: 'SmsTemplate',
|
|
components: { zbParser },
|
|
filters: {
|
|
statusFilter(status) {
|
|
const statusMap = {
|
|
0: '不可用',
|
|
1: '可用'
|
|
}
|
|
return statusMap[status]
|
|
},
|
|
typesFilter(status) {
|
|
const statusMap = {
|
|
1: '验证码',
|
|
2: '通知',
|
|
3: '推广'
|
|
}
|
|
return statusMap[status]
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
isCreate: 0,
|
|
editData: {},
|
|
dialogVisible: false,
|
|
fullscreenLoading: false,
|
|
listLoading: false,
|
|
tableData: {
|
|
data: [],
|
|
total: 0
|
|
},
|
|
tableFrom: {
|
|
page: 1,
|
|
limit: 20
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'isLogin'
|
|
])
|
|
},
|
|
mounted() {
|
|
if (!this.isLogin) {
|
|
this.$router.push('/operation/onePass?url=' + this.$route.path)
|
|
} else {
|
|
this.getList()
|
|
}
|
|
},
|
|
methods: {
|
|
resetForm(formValue) {
|
|
this.handleClose();
|
|
},
|
|
handleClose() {
|
|
this.dialogVisible = false
|
|
this.editData = {}
|
|
},
|
|
handlerSubmit(formValue) {
|
|
tempCreateApi(formValue).then(data => {
|
|
this.$message.success('新增成功')
|
|
this.dialogVisible = false
|
|
this.editData = {}
|
|
this.getList()
|
|
})
|
|
},
|
|
add() {
|
|
this.dialogVisible = true
|
|
},
|
|
// 查看是否登录
|
|
onIsLogin() {
|
|
this.fullscreenLoading = true
|
|
this.$store.dispatch('user/isLogin').then(async res => {
|
|
const data = res
|
|
if (!data.status) {
|
|
this.$message.warning('请先登录')
|
|
this.$router.push( '/operation/onePass?url=' + this.$route.path)
|
|
} else {
|
|
this.getList()
|
|
}
|
|
this.fullscreenLoading = false
|
|
}).catch(res => {
|
|
this.$router.push( '/operation/onePass?url=' + this.$route.path)
|
|
this.fullscreenLoading = false
|
|
})
|
|
},
|
|
// 列表
|
|
getList() {
|
|
this.listLoading = true
|
|
smsTempLstApi(this.tableFrom).then(res => {
|
|
this.tableData.data = res.data
|
|
this.tableData.total = res.count
|
|
this.listLoading = false
|
|
}).catch(res => {
|
|
this.listLoading = false
|
|
})
|
|
},
|
|
pageChange(page) {
|
|
this.tableFrom.page = page
|
|
this.getList()
|
|
},
|
|
handleSizeChange(val) {
|
|
this.tableFrom.limit = val
|
|
this.getList()
|
|
},
|
|
// 表格搜索
|
|
userSearchs() {
|
|
this.tableFrom.page = 1
|
|
this.getList()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.selWidth{
|
|
width: 350px !important;
|
|
}
|
|
</style>
|