index.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="票务名称">
  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="['ticketMr:ticketMr: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="60"></el-table-column>
  33. <el-table-column label="票务名称" align="center" prop="goodsName" />
  34. <el-table-column label="销售价" align="center" prop="type">
  35. <template slot-scope="scope">
  36. <span>¥{{ scope.row.salePrice }}</span>
  37. </template>
  38. </el-table-column>
  39. <el-table-column label="是否限购" align="center" prop="type">
  40. <template slot-scope="scope">
  41. <el-tag type="success" v-if="scope.row.goodsPerform.buyAstrict > -1">是</el-tag>
  42. <el-tag type="danger" v-if="scope.row.goodsPerform.buyAstrict == -1">否</el-tag>
  43. </template>
  44. </el-table-column>
  45. <el-table-column label="销售渠道" align="center">
  46. <template slot-scope="scope">
  47. <span>{{ (scope.row.goodsPerform.channelWx == 0 ? '小程序' : '') + ' ' + (scope.row.goodsPerform.channelWindow == 0 ? '窗口' : '')}}</span>
  48. </template>
  49. </el-table-column>
  50. <el-table-column label="是否可退" align="center" prop="type">
  51. <template slot-scope="scope">
  52. <el-tag type="success" v-if="scope.row.goodsPerform.backStatus == 0">可退</el-tag>
  53. <el-tag type="danger" v-if="scope.row.goodsPerform.backStatus == 1">不可退</el-tag>
  54. </template>
  55. </el-table-column>
  56. <el-table-column label="状态" align="center" prop="type">
  57. <template slot-scope="scope">
  58. <el-switch
  59. @change="ionlineApi(scope.row)"
  60. v-model="scope.row.switchValue"
  61. :active-value="0"
  62. active-color="#13ce66"
  63. inactive-color="#ff4949">
  64. </el-switch>
  65. </template>
  66. </el-table-column>
  67. <el-table-column label="添加时间" align="center" prop="createTime" width="160" >
  68. <template slot-scope="scope">
  69. <span>{{ parseTime(scope.row.createTime) }}</span>
  70. </template>
  71. </el-table-column>
  72. <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width">
  73. <template slot-scope="scope">
  74. <el-button
  75. size="mini"
  76. type="text"
  77. @click="openDetails(scope.row)"
  78. v-hasPermi="['ticketMr:ticketMr:details']"
  79. >详情</el-button>
  80. <el-button
  81. size="mini"
  82. type="text"
  83. @click="handleUpdate(scope.row)"
  84. v-if="scope.row.status != 0"
  85. v-hasPermi="['ticketMr:ticketMr:edit']"
  86. >修改</el-button>
  87. <el-button
  88. size="mini"
  89. type="text"
  90. @click="handleDelete(scope.row,scope.index)"
  91. v-hasPermi="['ticketMr:ticketMr:delete']"
  92. >删除</el-button>
  93. </template>
  94. </el-table-column>
  95. </el-table>
  96. <pagination
  97. v-show="total>0"
  98. :total="total"
  99. :page.sync="queryParams.pageNum"
  100. :limit.sync="queryParams.pageSize"
  101. @pagination="getList"
  102. />
  103. <!-- 新增/编辑弹框 -->
  104. <add-and-edit
  105. ref="addAndEdit"
  106. @getList="getList"
  107. />
  108. <!-- 详情 -->
  109. <details-dia ref="detailsDia"></details-dia>
  110. </div>
  111. </template>
  112. <script>
  113. import { pageList, deleteById, updateStatus } from '@/api/ticketMr/ticketMr'
  114. import addAndEdit from "./dialog/addAndEdit.vue";
  115. import detailsDia from "./dialog/details.vue";
  116. export default {
  117. name: "agreement",
  118. dicts: ['agreement_type'],
  119. components: { addAndEdit, detailsDia },
  120. data() {
  121. return {
  122. // 遮罩层
  123. loading: true,
  124. // 选中数组
  125. ids: [],
  126. // 非单个禁用
  127. single: true,
  128. // 非多个禁用
  129. multiple: true,
  130. // 显示搜索条件
  131. showSearch: true,
  132. // 总条数
  133. total: 0,
  134. // 用户表格数据
  135. dataList: null,
  136. // 弹出层标题
  137. title: "",
  138. // 是否显示弹出层
  139. open: false,
  140. // 日期范围
  141. dateRange: [],
  142. // 查询参数
  143. queryParams: {
  144. pageNum: 1,
  145. pageSize: 10,
  146. type: undefined,
  147. goodsType: 2,
  148. classifyId: 1
  149. },
  150. statusList: [
  151. {id: 1, name: '未发布', value: 0},
  152. {id: 2, name: '发布', value: 1},
  153. {id: 3, name: '下架', value: 2},
  154. ],
  155. visibleStatus: false,
  156. newObj: {},
  157. visibleType: ''
  158. };
  159. },
  160. created() {
  161. this.getList();
  162. },
  163. methods: {
  164. /** 查询列表 */
  165. getList() {
  166. this.loading = true;
  167. pageList(this.addDateRange(this.queryParams, this.dateRange))
  168. .then(response => {
  169. this.dataList = response.data.rows;
  170. this.dataList.forEach(item =>{
  171. item.switchValue = item.status;
  172. })
  173. this.total = response.data.total;
  174. this.loading = false;
  175. }
  176. );
  177. },
  178. // 取消按钮
  179. cancel() {
  180. this.open = false;
  181. },
  182. /** 搜索按钮操作 */
  183. handleQuery() {
  184. this.queryParams.pageNum = 1;
  185. this.getList();
  186. },
  187. /** 重置按钮操作 */
  188. resetQuery() {
  189. this.dateRange = [];
  190. this.$set(this.queryParams, 'goodsName', '');
  191. this.queryParams.pageNum = 1;
  192. this.handleQuery();
  193. },
  194. /** 新增按钮操作 */
  195. handleAdd() {
  196. this.$refs["addAndEdit"].openDialog("新增数据", null);
  197. },
  198. /** 修改按钮操作 */
  199. handleUpdate(row) {
  200. this.$refs["addAndEdit"].openDialog("修改数据", row);
  201. },
  202. /** 详情按钮操作 */
  203. openDetails(row) {
  204. this.$refs["detailsDia"].openDialog("详情", row);
  205. },
  206. /** 发布或者取消发布按钮操作 */
  207. ionlineApi(row) {
  208. try {
  209. updateStatus({ id: row.id, status: row.status == 0 ? 1 : 0 }).then((res) => {
  210. if (res.code == 200) {
  211. this.$message({
  212. type: 'success',
  213. message: '操作成功!'
  214. });
  215. this.getList();
  216. }
  217. });
  218. }catch (e) {
  219. this.getList();
  220. }
  221. },
  222. // 修改是否启用
  223. changeStatus(row) {
  224. console.log(row)
  225. },
  226. /** 删除按钮操作 */
  227. handleDelete(row) {
  228. this.$modal.confirm('是否确认删除数据票务名称为"' + row.goodsName + '"的数据项?').then(function() {
  229. return deleteById(row.id);
  230. }).then(() => {
  231. this.getList();
  232. this.$modal.msgSuccess("删除成功");
  233. }).catch(() => {});
  234. },
  235. /** 查看按钮操作 */
  236. seeCenter(obj, type) {
  237. this.visibleStatus = true
  238. this.visibleType = type;
  239. this.newObj = obj;
  240. }
  241. }
  242. };
  243. </script>