tb-order-list.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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. </head>
  18. <body>
  19. <div class="vue-box" style="display: none;" :style="'display: block;'">
  20. <div class="c-panel">
  21. <!-- ------------- 检索参数 ------------- -->
  22. <div class="c-title">检索参数</div>
  23. <el-form ref="form" :model='p' @submit.native.prevent>
  24. <sa-item type="text" name="车牌号" v-model="p.veNo" width="80px"></sa-item>
  25. <sa-item type="text" name="订单号" v-model="p.tradeNo" width="80px"></sa-item>
  26. <sa-item type="text" name="边民" v-model="p.buyUserName" width="80px"></sa-item>
  27. <sa-item name="扣款状态">
  28. <el-select v-model="p.Sxb010Status">
  29. <el-option label="全部" value=""></el-option>
  30. <el-option label="未扣款" value="0"></el-option>
  31. <el-option label="扣款失败" value="2"></el-option>
  32. <el-option label="已扣款" value="1"></el-option>
  33. </el-select>
  34. </sa-item>
  35. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  36. <el-button type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
  37. <span>
  38. <el-button v-if="sa.isAuth('tb-order-deduction')" type="success" icon="el-icon-info"
  39. @click="deductionByVeNo()">按车补扣款</el-button>
  40. <el-button v-else :disabled="true" type="success" icon="el-icon-info">按车补扣款</el-button>
  41. </span>
  42. <span>
  43. <el-button v-if="sa.isAuth('tb-order-sendCXB001')" type="success" icon="el-icon-info"
  44. @click="sendCXB001ByVeNo()">按车推结关</el-button>
  45. <el-button v-else :disabled="true" type="success" icon="el-icon-info">按车推结关</el-button>
  46. </span>
  47. </el-form>
  48. <!-- ------------- 数据列表 ------------- -->
  49. <el-table class="data-table" ref="data-table" :data="dataList">
  50. <sa-td type="index" width="30px"></sa-td>
  51. <sa-td name="车牌号" prop="veNo"></sa-td>
  52. <sa-td name="订单号" prop="tradeNo" width="180"></sa-td>
  53. <sa-td name="买家" prop="buyUserName"></sa-td>
  54. <sa-td name="商家名称" prop="enterpriseName" width="280px"></sa-td>
  55. <sa-td name="商品名称" prop="goodsNames" width="200px"></sa-td>
  56. <sa-td name="净重(kg)" prop="netWt"></sa-td>
  57. <sa-td name="总金额" prop="totalPrice"></sa-td>
  58. <sa-td name="上架金额(元)" prop="upPrice"></sa-td>
  59. <sa-td name="订单状态" prop="upStatus">
  60. <template slot-scope="s">
  61. <div v-if="s.row.upStatus===2">已上架</div>
  62. <div v-else>未上架</div>
  63. </template>
  64. </sa-td>
  65. <sa-td name="过卡状态" prop="finishStatus">
  66. <template slot-scope="s">
  67. <div v-if="s.row.finishStatus===1">已过卡3</div>
  68. <div v-else>未过卡3</div>
  69. </template>
  70. </sa-td>
  71. <!--(一级市场)订单扣款回执状态[0=初始值 1=扣款成功 2=扣款失败]-->
  72. <sa-td name="扣款状态" prop="sxb010Status">
  73. <template slot-scope="s">
  74. <div v-if="s.row.sxb010Status===0">未扣款</div>
  75. <div v-if="s.row.sxb010Status===1">扣款成功</div>
  76. <div v-else-if="s.row.sxb010Status===2">扣款失败</div>
  77. </template>
  78. </sa-td>
  79. <sa-td name="补扣次数" prop="deductionCount">
  80. <template slot-scope="s">
  81. <div v-if="s.row.deductionCount==0">0</div>
  82. <div v-else>{{s.row.deductionCount}}</div>
  83. </template>
  84. </sa-td>
  85. <sa-td name="补扣时间" prop="deductionTime" width="140px"></sa-td>
  86. <sa-td name="创建时间" prop="createTime" width="140px"></sa-td>
  87. <sa-td type="enum" name="交易确认" prop="peopleConfirmStatus"
  88. :jv="{1: '已确认[green]', 0: '未确认[#ff910a]'}"></sa-td>
  89. <sa-td type="enum" name="委托确认" prop="cooperEntrustStatus"
  90. :jv="{1: '已确认[green]', 0: '未确认[#ff910a]'}"></sa-td>
  91. <sa-td type="enum" name="进口确认" prop="applyConfirmStatus"
  92. :jv="{1: '已确认[green]', 0: '未确认[#ff910a]'}"></sa-td>
  93. <el-table-column label="操作" fixed="right" width="210px">
  94. <template slot-scope="s">
  95. <el-button class="c-btn" type="success" icon="el-icon-view"
  96. @click="get(s.row)">查看</el-button>
  97. <el-button class="c-btn" type="primary" icon="el-icon-info"
  98. @click="getBank(s.row)">银行回执</el-button>
  99. <span>
  100. <el-button v-if="s.row.sxb010Status!=1
  101. &&s.row.peopleConfirmStatus===1 && s.row.applyConfirmStatus===1
  102. &&sa.isAuth('tb-order-deduction')" class="c-btn" type="warning" @click="deduction(s.row)">订单扣款</el-button>
  103. <el-button v-else :disabled="true" class="c-btn" type="warning">订单扣款</el-button>
  104. </span>
  105. <span>
  106. <el-button v-if="s.row.finishStatus!=1
  107. &&sa.isAuth('tb-order-sendCXB001')" class="c-btn" type="warning"
  108. @click="sendCXB001Handle(s.row)">推送结关</el-button>
  109. <el-button v-else :disabled="true" class="c-btn" type="warning">推送结关</el-button>
  110. </span>
  111. <el-button v-if="sa.isAuth('tb-order-send009')" class="c-btn" type="danger"
  112. @click="send009ToHt(s.row)">补推009</el-button>
  113. <!--<el-button v-if="s.row.upStatus==2&&s.row.resaleStatus==0&&sa.isAuth('tb-order-edit-price')"
  114. class="c-btn" type="warning" icon="el-icon-view" @click="editPrice(s.row)">修改上架金额</el-button>-->
  115. </template>
  116. </el-table-column>
  117. </el-table>
  118. <!-- ------------- 分页 ------------- -->
  119. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount"
  120. @change="f5()"></sa-item>
  121. </div>
  122. <el-dialog :title="model.title" :visible.sync="model.visible" width="500px">
  123. <div>
  124. 当前价格(元):{{model.form.upPrice}}
  125. </div>
  126. <sa-item type="num" name="金额" v-model="model.form.selPrice" placeholder="确认金额" br></sa-item>
  127. <span slot="footer" class="dialog-footer">
  128. <el-button @click="model.visible = false">取 消</el-button>
  129. <el-button type="primary" @click="save">保存</el-button>
  130. <el-button type="primary" @click="sel">转售二级</el-button>
  131. </span>
  132. </el-dialog>
  133. <el-dialog :title="deduction.title" :visible.sync="deduction.visible" width="500px">
  134. <sa-item name="车牌号" v-model="deduction.veNo" placeholder="车牌号" br></sa-item>
  135. <span slot="footer" class="dialog-footer">
  136. <el-button @click="deduction.visible = false">取 消</el-button>
  137. <el-button type="primary" @click="ToDeductionByVeNo">确定</el-button>
  138. </span>
  139. </el-dialog>
  140. <el-dialog :title="sendCXB001.title" :visible.sync="sendCXB001.visible" width="500px">
  141. <sa-item name="车牌号" v-model="sendCXB001.veNo" placeholder="车牌号" br></sa-item>
  142. <span slot="footer" class="dialog-footer">
  143. <el-button @click="sendCXB001.visible = false">取 消</el-button>
  144. <el-button type="primary" @click="ToSendCXB001ByVeNo">确定</el-button>
  145. </span>
  146. </el-dialog>
  147. </div>
  148. <script>
  149. var app = new Vue({
  150. components: {
  151. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  152. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  153. },
  154. el: '.vue-box',
  155. data: {
  156. model: {
  157. title: '修改价格',
  158. visible: false,
  159. form: {
  160. id: '',
  161. upPrice: '',
  162. selPrice: 0
  163. }
  164. },
  165. deduction: {
  166. title: '按车补扣款',
  167. visible: false,
  168. veNo: ''
  169. },
  170. sendCXB001: {
  171. title: '按车推结关',
  172. visible: false,
  173. veNo: ''
  174. },
  175. p: { // 查询参数
  176. tradeNo: '', // 订单号
  177. buyUserName: '', // 买家
  178. sxb010Status: '', // 商家名称
  179. returns: 0,
  180. chargebacks: 0,
  181. pageNo: 1, // 当前页
  182. pageSize: 10, // 页大小
  183. sortType: 0 // 排序方式
  184. },
  185. dataCount: 0,
  186. dataList: [], // 数据集合
  187. },
  188. methods: {
  189. editPrice(item) {
  190. this.model = {
  191. title: '修改订单【' + item.tradeNo + '】价格',
  192. visible: true,
  193. form: item
  194. }
  195. },
  196. save() {
  197. let price = this.model.form.selPrice;
  198. if (!price) {
  199. sa.error('请输入金额')
  200. return;
  201. }
  202. sa.ajax('/level-one-server/TbOrder/editUpPrice', {
  203. id: this.model.form.id,
  204. price: price
  205. }, function(res) {
  206. this.f5();
  207. this.model.visible = false;
  208. }.bind(this));
  209. },
  210. sel() {
  211. let price = this.model.form.selPrice;
  212. if (!price) {
  213. sa.error('请输入金额')
  214. return;
  215. }
  216. sa.ajax('/level-two-server/TbOrders/addOrderByResale', {
  217. id: this.model.form.id,
  218. price: price
  219. }, function(res) {
  220. this.f5();
  221. this.model.visible = false;
  222. }.bind(this));
  223. },
  224. deduction(data) {
  225. sa.confirm('是否执行订单扣款操作', function() {
  226. sa.ajax('/level-one-server/TbOrder/deduction?id=' + data.id, function(res) {
  227. sa.ok('操作成功');
  228. sa.f5TableHeight(); // 刷新表格高度
  229. }.bind(this))
  230. }.bind(this));
  231. },
  232. deductionByVeNo() {
  233. this.deduction.visible = true
  234. },
  235. ToDeductionByVeNo() {
  236. let veNo = this.deduction.veNo;
  237. if (!veNo) {
  238. sa.error('请输入车牌号')
  239. return;
  240. }
  241. sa.showIframe('按车补扣款【' + veNo + '】', 'tb-order-deductionByVeNo.html?veNo=' + veNo, '1660px',
  242. '97%');
  243. },
  244. sendCXB001Handle(data) {
  245. sa.confirm('是否执行推送结关信息操作', function() {
  246. sa.ajax('/level-one-server/TbOrder/sendCXB001?id=' + data.id, function(res) {
  247. sa.ok('操作成功');
  248. sa.f5TableHeight(); // 刷新表格高度
  249. }.bind(this))
  250. }.bind(this));
  251. },
  252. sendCXB001ByVeNo() {
  253. this.sendCXB001.visible = true
  254. },
  255. ToSendCXB001ByVeNo() {
  256. let veNo = this.sendCXB001.veNo;
  257. if (!veNo) {
  258. sa.error('请输入车牌号')
  259. return;
  260. }
  261. sa.showIframe('按车推结关【' + veNo + '】', 'tb-order-sendCXB001ByVeNo.html?veNo=' + veNo, '1660px',
  262. '97%');
  263. },
  264. send009ToHt(data) {
  265. sa.confirm('是否执行推送009报文操作', function() {
  266. sa.ajax('/level-one-server/TbOrder/send009ToHt?id=' + data.id, function(res) {
  267. sa.ok('操作成功');
  268. sa.f5TableHeight(); // 刷新表格高度
  269. }.bind(this))
  270. }.bind(this));
  271. },
  272. // 刷新
  273. f5: function() {
  274. this.deduction.veNo = '';
  275. this.deduction.visible = false;
  276. this.sendCXB001.veNo = '';
  277. this.sendCXB001.visible = false;
  278. sa.ajax('/level-one-server/TbOrder/getList', sa.removeNull(this.p), function(res) {
  279. this.dataList = res.data; // 数据
  280. this.dataCount = res.dataCount; // 数据总数
  281. sa.f5TableHeight(); // 刷新表格高度
  282. }.bind(this));
  283. },
  284. // 查看
  285. get: function(data) {
  286. sa.showIframe('数据详情', 'tb-order-info.html?id=' + data.id, '1050px', '70%');
  287. },
  288. // 查看银行回执
  289. getBank: function(data) {
  290. sa.showIframe('银行回执', 'tb-order-bank-list.html?tradeNo=' + data.tradeNo, '1300px', '90%');
  291. },
  292. // 修改
  293. update: function(data) {
  294. sa.showIframe('修改数据', 'tb-order-add.html?id=' + data.id, '1000px', '90%');
  295. },
  296. // 新增
  297. add: function(data) {
  298. sa.showIframe('新增数据', 'tb-order-add.html?id=-1', '1000px', '90%');
  299. },
  300. // 删除
  301. del: function(data) {
  302. sa.confirm('是否删除,此操作不可撤销', function() {
  303. sa.ajax('/level-one-server/TbOrder/delete?id=' + data.id, function(res) {
  304. sa.arrayDelete(this.dataList, data);
  305. sa.ok('删除成功');
  306. sa.f5TableHeight(); // 刷新表格高度
  307. }.bind(this))
  308. }.bind(this));
  309. },
  310. // 批量删除
  311. deleteByIds: function() {
  312. // 获取选中元素的id列表
  313. let selection = this.$refs['data-table'].selection;
  314. let ids = sa.getArrayField(selection, 'id');
  315. if (selection.length == 0) {
  316. return sa.msg('请至少选择一条数据')
  317. }
  318. // 提交删除
  319. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  320. sa.ajax('/level-one-server/TbOrder/deleteByIds', {
  321. ids: ids.join(',')
  322. }, function(res) {
  323. sa.arrayDelete(this.dataList, selection);
  324. sa.ok('删除成功');
  325. sa.f5TableHeight(); // 刷新表格高度
  326. }.bind(this))
  327. }.bind(this));
  328. },
  329. },
  330. created: function() {
  331. this.f5();
  332. sa.onInputEnter();
  333. }
  334. })
  335. </script>
  336. </body>
  337. </html>