index.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <div class="app-container">
  3. <el-row :gutter="10" class="mb8" style="margin-left: 0; margin-top: 10px">
  4. <el-button
  5. type="primary"
  6. plain
  7. icon="el-icon-plus"
  8. size="mini"
  9. @click="synchronousEven"
  10. v-hasPermi="['gateMr:gateMr:synchronous']"
  11. >同步</el-button>
  12. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  13. </el-row>
  14. <el-table ref="tables" v-loading="loading" :data="dataList" border>
  15. <el-table-column label="序号" align="center" type="index" width="60"></el-table-column>
  16. <el-table-column label="设备名称" align="center" prop="" />
  17. <el-table-column label="设备型号" align="center" prop="" />
  18. <el-table-column label="验票站点" align="center" prop="" />
  19. <el-table-column label="出口\入口" align="center" prop="" />
  20. <el-table-column label="设备编码" align="center" prop="" />
  21. <el-table-column label="在线状态" align="center" prop="" />
  22. <el-table-column label="添加时间" align="center" prop="createTime" width="160" >
  23. <template slot-scope="scope">
  24. <span>{{ parseTime(scope.row.createTime) }}</span>
  25. </template>
  26. </el-table-column>
  27. <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width">
  28. <template slot-scope="scope">
  29. <el-button
  30. size="mini"
  31. type="text"
  32. @click="handleOpen(scope.row)"
  33. v-hasPermi="['gateMr:gateMr:open']"
  34. >开闸</el-button>
  35. <el-button
  36. size="mini"
  37. type="text"
  38. @click="handleClose(scope.row,scope.index)"
  39. v-hasPermi="['gateMr:gateMr:close']"
  40. >关闸</el-button>
  41. </template>
  42. </el-table-column>
  43. </el-table>
  44. <pagination
  45. v-show="total>0"
  46. :total="total"
  47. :page.sync="queryParams.pageNum"
  48. :limit.sync="queryParams.pageSize"
  49. @pagination="getList"
  50. />
  51. </div>
  52. </template>
  53. <script>
  54. import { pageList, downOrderListXls } from '@/api/financeMr/flowingWaterMr'
  55. import { exportExcel } from '@/utils/exportexcel'
  56. export default {
  57. name: "agreement",
  58. dicts: ['agreement_type'],
  59. data() {
  60. return {
  61. // 遮罩层
  62. loading: true,
  63. // 选中数组
  64. ids: [],
  65. // 非单个禁用
  66. single: true,
  67. // 非多个禁用
  68. multiple: true,
  69. // 显示搜索条件
  70. showSearch: true,
  71. // 总条数
  72. total: 0,
  73. // 用户表格数据
  74. dataList: null,
  75. // 弹出层标题
  76. title: "",
  77. // 是否显示弹出层
  78. open: false,
  79. // 日期范围
  80. dateRange: [],
  81. // 查询参数
  82. queryParams: {
  83. pageNum: 1,
  84. pageSize: 10,
  85. },
  86. statusList: [
  87. {id: 1, name: '申请中', value: 0},
  88. {id: 2, name: '退款成功', value: 1},
  89. {id: 3, name: '退款失败', value: 2},
  90. {id: 4, name: '退款中', value: 3},
  91. ],
  92. sourceMap: {
  93. 1: '小程序',
  94. 2: '美团',
  95. 3: '携程',
  96. 4: '公众号',
  97. 5: '支付宝',
  98. },
  99. incomeExpensesList: [
  100. {id: 1, name: '收入', value: '收入'},
  101. {id: 2, name: '支出', value: '支出'},
  102. ],
  103. businessTypeList: [
  104. {id: 1, name: '购买演出票', value: '购买演出票'},
  105. {id: 2, name: '票务退款', value: '票务退款'},
  106. ],
  107. visibleStatus: false,
  108. newObj: {},
  109. visibleType: '',
  110. handleExportLoading: false,
  111. tableData: {}
  112. };
  113. },
  114. created() {
  115. this.getList();
  116. },
  117. methods: {
  118. /** 查询列表 */
  119. getList() {
  120. this.loading = true;
  121. pageList(this.queryParams)
  122. .then(response => {
  123. this.dataList = response.data.rows;
  124. this.total = response.data.total;
  125. this.loading = false;
  126. }
  127. );
  128. },
  129. // 取消按钮
  130. cancel() {
  131. this.open = false;
  132. },
  133. /** 搜索按钮操作 */
  134. handleQuery() {
  135. this.queryParams.pageNum = 1;
  136. this.getList();
  137. },
  138. /** 重置按钮操作 */
  139. resetQuery() {
  140. this.dateRange = [];
  141. this.$set(this.queryParams, 'id', '');
  142. this.$set(this.queryParams, 'businessType', '');
  143. this.$set(this.queryParams, 'incomeExpenses', '');
  144. this.queryParams.pageNum = 1;
  145. this.handleQuery();
  146. },
  147. /** 详情按钮操作 */
  148. openDetails(row, type) {
  149. this.$refs["detailsDia"].openDialog("详情", row, type);
  150. },
  151. /**
  152. * 同步
  153. * @date 2022-10-24
  154. * @returns {any}
  155. */
  156. synchronousEven() {
  157. },
  158. // 开闸
  159. handleOpen() {
  160. },
  161. // 关闸
  162. handleClose() {
  163. },
  164. }
  165. };
  166. </script>