|
|
@@ -0,0 +1,196 @@
|
|
|
+<template>
|
|
|
+ <div class="mod-promotion-officialChannel">
|
|
|
+ <!-- 列表相关区域 -->
|
|
|
+ <div class="main-container">
|
|
|
+ <div class="operation-bar">
|
|
|
+ <div class="default-btn primary-btn" @click="addOrUpdateHandle()">{{$t("crud.addTitle")}}</div>
|
|
|
+ </div>
|
|
|
+ <div class="table-con spec-table">
|
|
|
+ <el-table
|
|
|
+ ref="specListTable"
|
|
|
+ :data="dataList"
|
|
|
+ header-cell-class-name="table-header"
|
|
|
+ row-class-name="table-row"
|
|
|
+ style="width: 100%">
|
|
|
+ <el-table-column label="关注二维码" prop="assistImg" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-image
|
|
|
+ style="width: 100px; height: 100px"
|
|
|
+ :src="resourcesUrl + scope.row.officialQrCode"
|
|
|
+ v-if="scope.row.officialQrCode"
|
|
|
+ fit="fill"
|
|
|
+ @click="previewPic(scope.row.officialQrCode)"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- 官方名称 -->
|
|
|
+ <el-table-column label="官方名称" prop="assistName" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.officialName}}</span>
|
|
|
+ <br/>
|
|
|
+ <span>{{ scope.row.officialNo}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- 渠道名称 -->
|
|
|
+ <el-table-column label="渠道名称" prop="assistNum" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-image
|
|
|
+ style="width: 100px; height: 100px"
|
|
|
+ :src="resourcesUrl + scope.row.channelLogo"
|
|
|
+ v-if="scope.row.channelLogo"
|
|
|
+ fit="fill"
|
|
|
+ @click="previewPic(scope.row.channelLogo)"
|
|
|
+ />
|
|
|
+ <br/>
|
|
|
+ <span>{{ scope.row.channelName}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- 官方介绍 -->
|
|
|
+ <el-table-column label="官方介绍" prop="assistPower" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.officialDesc}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- 状态 -->
|
|
|
+ <el-table-column label="状态" prop="unitPower" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag v-if="scope.row.status === 1" type="success">正常</el-tag>
|
|
|
+ <el-tag v-if="scope.row.status === -1" type="danger">下线</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- 操作 -->
|
|
|
+ <el-table-column align="center" fixed="right" :label="$t('publics.operating')" width="250px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div class="text-btn-con">
|
|
|
+ <div class="default-btn text-btn" @click="addOrUpdateHandle(scope.row.id)">{{$t("crud.updateBtn")}}</div>
|
|
|
+ <div class="default-btn text-btn" @click.stop="deleteHandle(scope.row.id)">{{$t("text.delBtn")}}</div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <el-pagination
|
|
|
+ v-if="dataList.length"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ :current-page="page.currentPage"
|
|
|
+ :page-sizes="[10, 20, 50, 100]"
|
|
|
+ :page-size="page.pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="page.total">
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
+ <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="refreshChange"></add-or-update>
|
|
|
+ <el-dialog :visible.sync="previewPicDialogVisible" :modal="false" title="图片预览" width="30%" top="3vh">
|
|
|
+ <el-image :src="previewPicUrl" alt="" style="width: 100%; height: 100%"/>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import AddOrUpdate from './officialChannel-add-or-update'
|
|
|
+export default {
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ dataList: [],
|
|
|
+ previewPicDialogVisible: false,
|
|
|
+ previewPicUrl: null,
|
|
|
+ page: {
|
|
|
+ total: 0, // 总页数
|
|
|
+ currentPage: 1, // 当前页数
|
|
|
+ pageSize: 10 // 每页显示多少条
|
|
|
+ },
|
|
|
+ shopId: this.$store.state.user.shopId,
|
|
|
+ assistRecordVisible: false,
|
|
|
+ resourcesUrl: process.env.VUE_APP_RESOURCES_URL,
|
|
|
+ searchForm: {}, // 搜索
|
|
|
+ dataListLoading: false,
|
|
|
+ addOrUpdateVisible: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ AddOrUpdate,
|
|
|
+ },
|
|
|
+ created () {
|
|
|
+ this.getDataList()
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ previewPic(url){
|
|
|
+ this.previewPicUrl = this.resourcesUrl + url
|
|
|
+ this.previewPicDialogVisible = true;
|
|
|
+ },
|
|
|
+ getDataList (page) {
|
|
|
+ this.dataListLoading = true
|
|
|
+ this.$http({
|
|
|
+ url: this.$http.adornUrl('/promotion/officialChannel/page'),
|
|
|
+ method: 'get',
|
|
|
+ params: this.$http.adornParams(
|
|
|
+ Object.assign({
|
|
|
+ current: page == null ? this.page.currentPage : page.currentPage,
|
|
|
+ size: page == null ? this.page.pageSize : page.pageSize,
|
|
|
+ shopId: this.shopId
|
|
|
+ },
|
|
|
+ this.searchForm
|
|
|
+ )
|
|
|
+ )
|
|
|
+ }).then(({data}) => {
|
|
|
+ this.dataList = data.records
|
|
|
+ this.page.total = data.total
|
|
|
+ this.dataListLoading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 新增 / 修改
|
|
|
+ addOrUpdateHandle (id) {
|
|
|
+ this.addOrUpdateVisible = true
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.addOrUpdate.init(id)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ deleteHandle (id) {
|
|
|
+ this.$confirm(this.$i18n.t('admin.isDeleOper') + '?', this.$i18n.t('text.tips'), {
|
|
|
+ confirmButtonText: this.$i18n.t('crud.filter.submitBtn'),
|
|
|
+ cancelButtonText: this.$i18n.t('crud.filter.cancelBtn'),
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.$http({
|
|
|
+ url: this.$http.adornUrl('/promotion/officialChannel/' + id),
|
|
|
+ method: 'delete',
|
|
|
+ data: this.$http.adornData({})
|
|
|
+ }).then(({ data }) => {
|
|
|
+ this.$message({
|
|
|
+ message: this.$i18n.t('publics.operation'),
|
|
|
+ type: 'success',
|
|
|
+ duration: 200,
|
|
|
+ onClose: () => {
|
|
|
+ this.refreshChange()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }).catch(() => { })
|
|
|
+ },
|
|
|
+ // 刷新回调
|
|
|
+ refreshChange () {
|
|
|
+ this.page.currentPage = 1
|
|
|
+ this.getDataList(this.page)
|
|
|
+ },
|
|
|
+ searchChange (params) {
|
|
|
+ this.searchForm = params
|
|
|
+ this.getDataList(this.page)
|
|
|
+ },
|
|
|
+ handleSizeChange (val) {
|
|
|
+ this.page.pageSize = val
|
|
|
+ this.getDataList()
|
|
|
+ },
|
|
|
+ handleCurrentChange (val) {
|
|
|
+ this.page.currentPage = val
|
|
|
+ this.getDataList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style lang="scss">
|
|
|
+.mod-print-prodAssist {
|
|
|
+}
|
|
|
+</style>
|