| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- <template>
- <div class="mod-prod-prodTemplate">
- <!-- 搜索相关区域 -->
- <div class="search-bar">
- <el-form :inline="true" class="search-form" ref="searchForm" :model="searchForm" label-width="auto" size="small">
- <!-- 表单项 -->
- <div class="input-row">
- <el-form-item prop="templateSeriesId" label="模板系列:">
- <el-select v-model="searchForm.templateSeriesId" clearable filterable>
- <el-option
- v-for="node in seriesList"
- :key="node.seriesId"
- :label="node.seriesName"
- :value="node.seriesId"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <div class="default-btn primary-btn" @click="searchChange()">{{ $t('crud.searchBtn') }}</div>
- <div class="default-btn" @click="resetForm()">{{ $t('shop.resetMap') }}</div>
- </el-form-item>
- </div>
- </el-form>
- </div>
- <!-- 列表相关区域 -->
- <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
- align="center"
- prop="templateUrl"
- label="语音地址"
- width="300">
- <template slot-scope="scope">
- <video
- :src="resourcesUrl + scope.row.templateUrl"
- v-if="scope.row.templateUrl"
- controls="controls"
- style="width:260px;height:87.5px;"
- />
- </template>
- </el-table-column>
- <el-table-column label="模版系列" prop="templateSeries" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.templateSeries}}</span>
- </template>
- </el-table-column>
- <el-table-column :label="$t('prodTemplate.status')" prop="status" align="center">
- <template slot-scope="scope">
- <el-tag type="success" v-if="scope.row.status === 1">启用</el-tag>
- <el-tag type="danger" v-if="scope.row.status === -1">禁用</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="排序" prop="seq" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.seq}}</span>
- </template>
- </el-table-column>
- <el-table-column align="center" fixed="right" :label="$t('publics.operating')" width="auto">
- <template slot-scope="scope">
- <div class="text-btn-con">
- <div class="default-btn text-btn" @click="addOrUpdateHandle(scope.row.templateId)"
- >{{$t("crud.updateBtn")}}</div>
- <div class="default-btn text-btn" @click.stop="deleteHandle(scope.row.templateId)"
- >{{$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 './voiceTemplate-add-or-update'
- export default {
- data () {
- return {
- dataList: [],
- page: {
- total: 0, // 总页数
- currentPage: 1, // 当前页数
- pageSize: 10 // 每页显示多少条
- },
- searchForm: {
- templateSeriesId: null,
- }, // 搜索
- dataListLoading: false,
- addOrUpdateVisible: false,
- seriesList: [],
- resourcesUrl: process.env.VUE_APP_RESOURCES_URL,
- previewPicUrl: null,
- previewPicDialogVisible: false,
- }
- },
- components: {
- AddOrUpdate
- },
- created () {
- this.getDataList()
- this.getSeriesList()
- },
- mounted () {
- },
- methods: {
- previewPic(row){
- this.previewPicUrl = this.resourcesUrl + row.templateUrl
- this.previewPicDialogVisible = true;
- },
- getSeriesList () {
- this.$http({
- url: this.$http.adornUrl('/prod/prodTemplateSeries/page'),
- method: 'get',
- params: this.$http.adornParams(
- Object.assign({
- size: 100,
- shopId: this.$store.state.user.shopId
- },
- )
- )
- }).then(({data}) => {
- this.seriesList = data.records
- })
- },
- getDataList (page) {
- this.dataListLoading = true
- this.$http({
- url: this.$http.adornUrl('/prod/voiceTemplate/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.$store.state.user.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('/prod/voiceTemplate/' + id),
- method: 'delete',
- data: this.$http.adornData({})
- }).then(({ data }) => {
- this.$message({
- message: this.$i18n.t('publics.operation'),
- type: 'success',
- duration: 100,
- onClose: () => {
- this.refreshChange()
- }
- })
- })
- }).catch(() => { })
- },
- resetForm () {
- this.searchForm = {
- templateSeriesId: null
- }
- },
- // 刷新回调
- refreshChange () {
- this.getDataList(this.page)
- },
- searchChange () {
- // 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-prod-prodTemplate {
- }
- </style>
|