tb-order-list.html 7.5 KB

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