ht-trade-settlement-order.html 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>边民订单表-列表</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport"
  7. content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  8. <!-- 所有的 css & js 资源 -->
  9. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  10. <link rel="stylesheet" href="../../static/sa.css">
  11. <script src="../../static/kj/vue.min.js"></script>
  12. <script src="../../static/kj/element-ui/index.js"></script>
  13. <script src="../../static/kj/httpVueLoader.js"></script>
  14. <script src="../../static/kj/jquery.min.js"></script>
  15. <script src="../../static/kj/layer/layer.js"></script>
  16. <script src="../../static/sa.js"></script>
  17. <style type="text/css">
  18. .c-panel .el-form .c-label {
  19. width: 7em !important;
  20. }
  21. .c-panel .el-form .el-input,
  22. .c-panel .el-form .el-textarea__inner {
  23. width: 250px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="vue-box" style="display: none;" :style="'display: block;'">
  29. <div class="c-panel">
  30. <!-- ------------- 检索参数 ------------- -->
  31. <!-- <div class="c-title">检索参数</div> -->
  32. <el-form ref="form" :model='p' @submit.native.prevent>
  33. <sa-item type="text" name="边民" v-model="p.buyUserName"></sa-item>
  34. <sa-item name="状态">
  35. <el-select v-model="p.applyConfirmStatus">
  36. <el-option label="全部" value=""></el-option>
  37. <el-option label="已确认" :value="1"></el-option>
  38. <el-option label="未确认" :value="0"></el-option>
  39. </el-select>
  40. </sa-item>
  41. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  42. <el-button type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
  43. </el-form>
  44. <!-- ------------- 数据列表 ------------- -->
  45. <el-table class="data-table" ref="data-table" :data="dataList">
  46. <sa-td type="index" width="30px"></sa-td>
  47. <sa-td name="订单号" prop="tradeNo" width="180px"></sa-td>
  48. <sa-td name="边民" prop="buyUserName"></sa-td>
  49. <sa-td name="商家名称" prop="enterpriseName" width="280px"></sa-td>
  50. <sa-td name="商品名称" prop="goodsNames" width="200px"></sa-td>
  51. <sa-td name="净重(kg)" prop="netWt"></sa-td>
  52. <sa-td name="车牌号" prop="veNo"></sa-td>
  53. <sa-td name="总金额" prop="totalPrice"></sa-td>
  54. <sa-td name="确认状态" prop="totalPrice">
  55. <template slot-scope="s">
  56. <div v-if="s.row.applyConfirmStatus==1">已确认</div>
  57. <div v-else>未确认</div>
  58. </template>
  59. </sa-td>
  60. <sa-td name="上架金额(元)" prop="upPrice">
  61. </sa-td>
  62. <sa-td name="订单状态" prop="upPrice">
  63. <template slot-scope="s">
  64. <div v-if="s.row.upStatus==2">已上架</div>
  65. <div v-else>未上架</div>
  66. </template>
  67. </sa-td>
  68. <!-- <sa-td type="enum" name="交易确认" prop="peopleConfirmStatus" :jv="{1: '已确认[green]', 0: '未确认[#ff910a]'}" ></sa-td>
  69. <sa-td type="enum" name="委托确认" prop="cooperEntrustStatus" :jv="{1: '已确认[green]', 0: '未确认[#ff910a]'}" ></sa-td>
  70. <sa-td type="enum" name="进口确认" prop="applyConfirmStatus" :jv="{1: '已确认[green]', 0: '未确认[#ff910a]'}" ></sa-td> -->
  71. <el-table-column label="操作" fixed="right" width="100px">
  72. <template slot-scope="s">
  73. <el-button class="c-btn" type="success" icon="el-icon-view"
  74. @click="getBank(s.row)">银行回执</el-button>
  75. </template>
  76. </el-table-column>
  77. </el-table>
  78. <!-- ------------- 分页 ------------- -->
  79. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount"
  80. @change="f5()"></sa-item>
  81. </div>
  82. <el-dialog :title="model.title" :visible.sync="model.visible" width="500px">
  83. <div>
  84. 当前价格(元):{{model.form.upPrice}}
  85. </div>
  86. <sa-item type="num" name="金额" v-model="model.form.selPrice" placeholder="确认金额" br></sa-item>
  87. <span slot="footer" class="dialog-footer">
  88. <el-button @click="model.visible = false">取 消</el-button>
  89. <el-button type="primary" @click="save">保存</el-button>
  90. <el-button type="primary" @click="sel">转售二级</el-button>
  91. </span>
  92. </el-dialog>
  93. </div>
  94. <script>
  95. var app = new Vue({
  96. components: {
  97. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  98. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  99. },
  100. el: '.vue-box',
  101. data: {
  102. model: {
  103. title: '修改价格',
  104. visible: false,
  105. form: {
  106. id: '',
  107. upPrice: '',
  108. selPrice: 0
  109. }
  110. },
  111. p: { // 查询参数
  112. tradeNo: '', // 订单号
  113. buyUserName: '', // 买家
  114. applyConfirmStatus: '', // 商家名称
  115. saleMainId: sa.p('mainId', 0),
  116. pageNo: 1, // 当前页
  117. pageSize: 20, // 页大小
  118. sortType: 0 // 排序方式
  119. },
  120. dataCount: 0,
  121. dataList: [], // 数据集合
  122. },
  123. methods: {
  124. editPrice(item) {
  125. this.model = {
  126. title: '修改订单【' + item.tradeNo + '】价格',
  127. visible: true,
  128. form: item
  129. }
  130. },
  131. save() {
  132. let price = this.model.form.selPrice;
  133. if (!price) {
  134. sa.error('请输入金额')
  135. return;
  136. }
  137. sa.ajax('/level-one-server/TbOrder/editUpPrice', {
  138. id: this.model.form.id,
  139. price: price
  140. }, function(res) {
  141. this.f5();
  142. this.model.visible = false;
  143. }.bind(this));
  144. },
  145. sel() {
  146. let price = this.model.form.selPrice;
  147. if (!price) {
  148. sa.error('请输入金额')
  149. return;
  150. }
  151. sa.ajax('/level-two-server/TbOrders/addOrderByResale', {
  152. id: this.model.form.id,
  153. resalePrice: price
  154. }, function(res) {
  155. this.f5();
  156. this.model.visible = false;
  157. }.bind(this));
  158. },
  159. // 刷新
  160. f5: function() {
  161. sa.ajax('/level-one-server/TbOrder/getList', sa.removeNull(this.p), function(res) {
  162. this.dataList = res.data; // 数据
  163. this.dataCount = res.dataCount; // 数据总数
  164. sa.f5TableHeight(); // 刷新表格高度
  165. }.bind(this));
  166. },
  167. // 查看银行回执
  168. getBank: function(data) {
  169. sa.showIframe('银行回执', 'tb-order-bank-list.html?tradeNo=' + data.tradeNo, '1300px', '90%');
  170. }
  171. },
  172. created: function() {
  173. this.f5();
  174. sa.onInputEnter();
  175. }
  176. })
  177. </script>
  178. </body>
  179. </html>