index.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px">
  4. <el-form-item label="票务名称" label-width="70px">
  5. <el-input
  6. v-model="queryParams.goodsName"
  7. placeholder="请输入票务名称"
  8. clearable
  9. style="width: 240px;"
  10. @keyup.enter.native="handleQuery"
  11. />
  12. </el-form-item>
  13. <el-form-item>
  14. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  15. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  16. </el-form-item>
  17. </el-form>
  18. <el-row :gutter="10" class="mb8">
  19. <el-col :span="1.5">
  20. <el-button
  21. type="primary"
  22. plain
  23. icon="el-icon-plus"
  24. size="mini"
  25. @click="handleAdd"
  26. v-hasPermi="['teamTicketMr:teamTicketMr:add']"
  27. >新增</el-button>
  28. </el-col>
  29. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  30. </el-row>
  31. <el-table ref="tables" v-loading="loading" :data="dataList" border>
  32. <el-table-column label="序号" align="center" type="index" width="50"></el-table-column>
  33. <el-table-column label="剧目名称" align="center" prop="performName" />
  34. <el-table-column label="票务名称" align="center" prop="goodsName" />
  35. <el-table-column label="座位类型" align="center" prop="seatTypeName" />
  36. <el-table-column label="销售价" align="center" prop="brokerageTotal">
  37. <template slot-scope="scope">
  38. <span v-if="scope.row.originalSalePrice">¥{{ scope.row.originalSalePrice }}</span>
  39. </template>
  40. </el-table-column>
  41. <el-table-column label="团购单价" align="center" prop="withdrawTotal">
  42. <template slot-scope="scope">
  43. <span v-if="scope.row.salePrice">¥{{ scope.row.salePrice }}</span>
  44. </template>
  45. </el-table-column>
  46. <el-table-column label="成团人数" align="center" prop="teamPersonNum" />
  47. <el-table-column label="状态" align="center">
  48. <template slot-scope="scope">
  49. <el-tag type="success" v-if="scope.row.status == 1">己上架</el-tag>
  50. <el-tag type="info" v-if="scope.row.status == 0">未上架</el-tag>
  51. </template>
  52. </el-table-column>
  53. <el-table-column label="添加时间" align="center" prop="createTime" width="160">
  54. <template slot-scope="scope">
  55. <span>{{ parseTime(scope.row.createTime) }}</span>
  56. </template>
  57. </el-table-column>
  58. <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width">
  59. <template slot-scope="scope">
  60. <el-button
  61. size="mini"
  62. type="text"
  63. @click="handleUpdate(scope.row)"
  64. v-hasPermi="['teamTicketMr:teamTicketMr:edit']"
  65. >修改</el-button>
  66. <el-button
  67. size="mini"
  68. type="text"
  69. @click="handleTeam(scope.row)"
  70. v-hasPermi="['teamTicketMr:teamTicketMr:edit']"
  71. >团队绑定</el-button>
  72. <el-button
  73. size="mini"
  74. type="text"
  75. @click="ionlineApi(scope.row)"
  76. v-hasPermi="['teamTicketMr:teamTicketMr:resetting']"
  77. >{{ scope.row.status == 1 ? '下架' : '上架' }}</el-button>
  78. <el-button
  79. size="mini"
  80. type="text"
  81. @click="handleDelete(scope.row,scope.index)"
  82. v-hasPermi="['teamTicketMr:teamTicketMr:delete']"
  83. >删除</el-button>
  84. </template>
  85. </el-table-column>
  86. </el-table>
  87. <pagination
  88. v-show="total>0"
  89. :total="total"
  90. :page.sync="queryParams.pageNum"
  91. :limit.sync="queryParams.pageSize"
  92. @pagination="getList"
  93. />
  94. <!-- 新增/编辑弹框 -->
  95. <add-and-edit
  96. ref="addAndEdit"
  97. :dict="dict"
  98. @getList="getList"
  99. />
  100. <dumpling-edit :dict="dict" ref="dumplingEdit"></dumpling-edit>
  101. <el-dialog
  102. title="查看"
  103. :visible.sync="visibleStatus"
  104. width="600px"
  105. :destroy-on-close="true"
  106. :close-on-click-modal="false"
  107. >
  108. <div v-if="visibleType == 'img'">
  109. <el-image
  110. style="width: 400px; height: 100%"
  111. :src="newObj.mainImg"
  112. fit="cover"
  113. />
  114. </div>
  115. <div v-if="visibleType == 'html'">
  116. <div v-html="newObj.centent"></div>
  117. </div>
  118. <div slot="footer" class="dialog-footer">
  119. <el-button type="primary" @click="visibleStatus = false">确 定</el-button>
  120. </div>
  121. </el-dialog>
  122. </div>
  123. </template>
  124. <script>
  125. import { pageList, deleteById, updateStatus } from '@/api/team/ticketMr'
  126. import addAndEdit from "./dialog/addAndEdit.vue";
  127. import dumplingEdit from "./dialog/dumplingEdit.vue";
  128. export default {
  129. name: "agreement",
  130. dicts: ['distribution_type', 'team_type'],
  131. components: { addAndEdit, dumplingEdit },
  132. data() {
  133. return {
  134. // 遮罩层
  135. loading: true,
  136. // 选中数组
  137. ids: [],
  138. // 非单个禁用
  139. single: true,
  140. // 非多个禁用
  141. multiple: true,
  142. // 显示搜索条件
  143. showSearch: true,
  144. // 总条数
  145. total: 0,
  146. // 用户表格数据
  147. dataList: null,
  148. // 弹出层标题
  149. title: "",
  150. // 是否显示弹出层
  151. open: false,
  152. // 日期范围
  153. dateRange: [],
  154. // 查询参数
  155. queryParams: {
  156. pageNum: 1,
  157. pageSize: 10,
  158. type: undefined
  159. },
  160. statusList: [
  161. {id: 1, name: '未发布', value: 0},
  162. {id: 2, name: '发布', value: 1},
  163. {id: 3, name: '下架', value: 2},
  164. ],
  165. visibleStatus: false,
  166. newObj: {},
  167. visibleType: '',
  168. setStatus: false,
  169. setForm: {},
  170. setRules: [],
  171. setLoading: false,
  172. };
  173. },
  174. created() {
  175. this.getList();
  176. },
  177. methods: {
  178. /** 查询列表 */
  179. getList() {
  180. this.loading = true;
  181. pageList(this.queryParams)
  182. .then(response => {
  183. this.dataList = response.data.rows;
  184. this.dataList.forEach(item =>{
  185. item.switchValue = item.status;
  186. })
  187. this.total = response.data.total;
  188. this.loading = false;
  189. }
  190. );
  191. },
  192. // 取消按钮
  193. cancel() {
  194. this.open = false;
  195. },
  196. /** 搜索按钮操作 */
  197. handleQuery() {
  198. this.queryParams.pageNum = 1;
  199. this.getList();
  200. },
  201. /** 重置按钮操作 */
  202. resetQuery() {
  203. this.dateRange = [];
  204. this.$set(this.queryParams, 'goodsName', '');
  205. this.queryParams.pageNum = 1;
  206. this.handleQuery();
  207. },
  208. /** 价格输入事件 */
  209. changePriceAmount(key) {
  210. if(this.setForm[key] * 1 < 0){
  211. this.$message.error("输入需大于或等于0!");
  212. this.$set(this.setForm, key, '');
  213. return false
  214. }
  215. },
  216. /** 新增按钮操作 */
  217. handleAdd() {
  218. this.$refs["addAndEdit"].openDialog("新增数据", null);
  219. },
  220. /** 修改按钮操作 */
  221. handleUpdate(row) {
  222. this.$refs["addAndEdit"].openDialog("修改数据", row);
  223. },
  224. /** 团队绑定按钮操作 */
  225. handleTeam(row) {
  226. this.$refs["dumplingEdit"].openDialog("团队绑定", row);
  227. },
  228. /** 禁用或者启用发布按钮操作 */
  229. ionlineApi(row) {
  230. this.$confirm("是否对剧目名称为" + row.performName + "的数据进行" + (row.status == 1 ? '下架?' : '上架?'), '提示', {
  231. confirmButtonText: '确定',
  232. cancelButtonText: '取消',
  233. type: 'warning'
  234. }).then(() => {
  235. updateStatus({ id: row.id, status: row.status == 1 ? 0 : 1 }).then((res) => {
  236. if (res.code == 200) {
  237. this.$message({
  238. type: 'success',
  239. message: '操作成功!'
  240. });
  241. this.getList();
  242. }
  243. });
  244. }).catch(() => {});
  245. },
  246. /** 删除按钮操作 */
  247. handleDelete(row) {
  248. this.$modal.confirm('是否确认删除数据剧目名称为"' + row.performName + '"的数据项?').then(function() {
  249. return deleteById(row.id);
  250. }).then(() => {
  251. this.getList();
  252. this.$modal.msgSuccess("删除成功");
  253. }).catch(() => {});
  254. },
  255. /** 查看按钮操作 */
  256. seeCenter(obj, type) {
  257. this.visibleStatus = true
  258. this.visibleType = type;
  259. this.newObj = obj;
  260. }
  261. }
  262. };
  263. </script>