|
@@ -27,10 +27,15 @@
|
|
|
<el-table ref="tables" v-loading="loading" :data="dataList" border>
|
|
|
<el-table-column label="序号" align="center" type="index" width="50"></el-table-column>
|
|
|
<el-table-column label="门店POIID" align="center" prop="poiId" />
|
|
|
- <el-table-column label="商品类目ID" align="center" prop="categoryId" />
|
|
|
+ <el-table-column label="商品类目ID" align="center" prop="categoryId">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag :options="dict.type.tiktok_category" :value="scope.row.categoryId"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="演出厅" align="center" prop="performHallName" />
|
|
|
<el-table-column label="剧目名称" align="center" prop="performName" />
|
|
|
<el-table-column label="商品名称" align="center" prop="goodsName" />
|
|
|
- <el-table-column label="时刻信息" align="center" prop="goodsName">
|
|
|
+ <el-table-column label="时刻信息" align="center" prop="goodsName1">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.times }}</span>
|
|
|
</template>
|
|
@@ -104,7 +109,7 @@ import dataEdit from "./dialog/dataEdit.vue";
|
|
|
|
|
|
export default {
|
|
|
name: "agreement",
|
|
|
- dicts: ['tiktok_process','tiktok_online'],
|
|
|
+ dicts: ['tiktok_process','tiktok_online','tiktok_category'],
|
|
|
components: { addAndEdit, dataEdit },
|
|
|
data() {
|
|
|
return {
|