index.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <div class="app-container">
  3. <!-- 搜索工作栏 -->
  4. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
  5. <el-form-item label="订单名称" prop="OrderName">
  6. <el-select clearable v-model="queryParams.status" placeholder="请选择订单状态" multiple>
  7. <el-option :value="1" label="待支付" >待支付</el-option>
  8. <el-option :value="2" label="支付失败" >支付失败</el-option>
  9. <el-option :value="3" label="支付超时">支付超时</el-option>
  10. <el-option :value="4" label="待取餐" >待取餐</el-option>
  11. <el-option :value="5" label="已完成" >已完成</el-option>
  12. <el-option :value="6" label="已退款">已退款</el-option>
  13. </el-select>
  14. <!-- {{ queryParams.status }} -->
  15. <!-- <el-input v-model="queryParams.OrderName" placeholder="请输入订单名称" clearable @keyup.enter.native="handleQuery"/> -->
  16. </el-form-item>
  17. <el-form-item>
  18. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  19. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  20. </el-form-item>
  21. </el-form>
  22. <!-- 操作工具栏 -->
  23. <el-row :gutter="10" class="mb8">
  24. <!-- <el-col :span="1.5">
  25. <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="openForm(undefined)"
  26. v-hasPermi="['restaurant:order:create']">新增</el-button>
  27. </el-col> -->
  28. <!-- <el-col :span="1.5">
  29. <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
  30. v-hasPermi="['restaurant:order:export']">导出</el-button>
  31. </el-col> -->
  32. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  33. </el-row>
  34. <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
  35. <!-- <el-table-column label="订单编号" align="center" prop="id" /> -->
  36. <el-table-column label="订单名称" align="center" prop="name" />
  37. <el-table-column label="取餐人手机尾号" align="center" prop="phone" />
  38. <el-table-column label="订单价格" align="center" prop="priceVisable" >
  39. <template v-slot="scope">
  40. <span>{{ scope.row.priceVisable}}</span>
  41. </template>
  42. </el-table-column>
  43. <el-table-column label="订单类型" align="center" prop="type" >
  44. <template v-slot="scope">
  45. <span v-show="scope.row.type==1">到店</span>
  46. <span v-show="scope.row.type==2">配送</span>
  47. </template>
  48. </el-table-column>
  49. <!-- <el-table-column label="订单图标" align="center" prop="OrderIcon" /> -->
  50. <el-table-column label="创建时间" align="center" prop="createTime" width="180">
  51. <template v-slot="scope">
  52. <span>{{ parseTime(scope.row.createTime) }}</span>
  53. </template>
  54. </el-table-column>
  55. <el-table-column label="订单状态" align="center" prop="state" >
  56. <template v-slot="scope">
  57. <span v-show="scope.row.state==1">待支付</span>
  58. <span v-show="scope.row.state==2">支付失败</span>
  59. <span v-show="scope.row.state==3">支付超时</span>
  60. <span v-show="scope.row.state==4">待取餐</span>
  61. <span v-show="scope.row.state==5">已完成</span>
  62. <span v-show="scope.row.state==6">已退款</span>
  63. </template>
  64. </el-table-column>
  65. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  66. <template v-slot="scope">
  67. <el-button size="mini" type="text" icon="el-icon-edit" @click="openForm(scope.row.id)"
  68. v-show="scope.row.state==4"
  69. v-hasPermi="['restaurant:order:update']">修改</el-button>
  70. <el-button style="color: #666;" size="mini" type="text" icon="el-icon-search" @click="handleInspect(scope.row.id)"
  71. v-hasPermi="['restaurant:order:update']">查看</el-button>
  72. </template>
  73. </el-table-column>
  74. </el-table>
  75. <!-- 分页组件 -->
  76. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
  77. @pagination="getList"/>
  78. <!-- 对话框(添加 / 修改) -->
  79. <OrderForm ref="formRef" @success="getList" />
  80. </div>
  81. </template>
  82. <script>
  83. import * as OrderApi from '@/api/restaurant/order';
  84. import * as TypeApi from '@/api/restaurant/type';
  85. import OrderForm from './OrderForm.vue';
  86. export default {
  87. name: "Order",
  88. components: {
  89. OrderForm,
  90. },
  91. data() {
  92. return {
  93. // 遮罩层
  94. loading: true,
  95. // 导出遮罩层
  96. exportLoading: false,
  97. // 显示搜索条件
  98. showSearch: true,
  99. // 总条数
  100. total: 0,
  101. // 订单列表
  102. list: [],
  103. // 是否展开,默认全部展开
  104. isExpandAll: true,
  105. // 重新渲染表格状态
  106. refreshTable: true,
  107. // 选中行
  108. currentRow: {},
  109. // 查询参数
  110. queryParams: {
  111. pageNo: 1,
  112. pageSize: 10,
  113. desc:'true',
  114. OrderName: null,
  115. OrderPrice: null,
  116. OrderIcon: null,
  117. createTime: [],
  118. OrderTypeId: null,
  119. // status:[],
  120. },
  121. typeArray:[],
  122. };
  123. },
  124. created() {
  125. this.getList();
  126. // this.getType()
  127. },
  128. methods: {
  129. /** 查询列表 */
  130. async getList() {
  131. try {
  132. this.loading = true;
  133. // if(this.queryParams.status !=''){
  134. // this.queryParams.status= this.queryParams.status;
  135. // }
  136. const res = await OrderApi.pageOrder(this.queryParams);
  137. console.log('res',res)
  138. this.list = res.list;
  139. this.total = res.total;
  140. } finally {
  141. this.loading = false;
  142. }
  143. },
  144. /** 搜索按钮操作 */
  145. handleQuery() {
  146. this.queryParams.pageNo = 1;
  147. this.getList();
  148. },
  149. /** 重置按钮操作 */
  150. resetQuery() {
  151. this.queryParams.status=[]
  152. console.log('resetQuery',this.queryParams.status)
  153. this.resetForm("queryForm");
  154. this.handleQuery();
  155. },
  156. handleInspect(id) {
  157. this.$refs["formRef"].inspect(id);
  158. },
  159. /** 添加/修改操作 */
  160. openForm(id) {
  161. this.$refs["formRef"].open(id);
  162. },
  163. /** 导出按钮操作 */
  164. async handleExport() {
  165. await this.$modal.confirm('是否确认导出所有订单数据项?');
  166. try {
  167. this.exportLoading = true;
  168. const data = await OrderApi.exportOrderExcel(this.queryParams);
  169. this.$download.excel(data, '订单.xls');
  170. } catch {
  171. } finally {
  172. this.exportLoading = false;
  173. }
  174. },
  175. }
  176. };
  177. </script>