|
@@ -0,0 +1,236 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html>
|
|
|
+ <head>
|
|
|
+ <title>边民订单表-列表</title>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
|
|
|
+ <!-- 所有的 css & js 资源 -->
|
|
|
+ <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
|
|
|
+ <link rel="stylesheet" href="../../static/sa.css">
|
|
|
+ <script src="../../static/kj/vue.min.js"></script>
|
|
|
+ <script src="../../static/kj/element-ui/index.js"></script>
|
|
|
+ <script src="../../static/kj/httpVueLoader.js"></script>
|
|
|
+ <script src="../../static/kj/jquery.min.js"></script>
|
|
|
+ <script src="../../static/kj/layer/layer.js"></script>
|
|
|
+ <script src="../../static/sa.js"></script>
|
|
|
+ <style type="text/css">
|
|
|
+ hr {
|
|
|
+ border: none; /* 移除默认边框 */
|
|
|
+ height: 1px; /* 设置高度 */
|
|
|
+ background-color: gainsboro;/* 设置颜色 */
|
|
|
+ margin: 5px 0; /* 设置上下外边距 */
|
|
|
+ }
|
|
|
+ .c-panel .el-form .c-label{width: 7em !important;}
|
|
|
+ .c-panel .el-form .el-input, .c-panel .el-form .el-textarea__inner{width: 250px;}
|
|
|
+ </style>
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <div class="vue-box" style="display: none;" :style="'display: block;'">
|
|
|
+ <div class="c-panel">
|
|
|
+ <el-form v-if="bigData">
|
|
|
+ <el-row style="margin-left: 200px;">
|
|
|
+ <el-col span="12">
|
|
|
+ <sa-info name="商铺" br>{{bigData.shopName}}</sa-info>
|
|
|
+ <sa-info name="商品名称" br>{{bigData.goodsNames}}</sa-info>
|
|
|
+ <sa-info name="总金额" br>{{bigData.sumAmt}}</sa-info>
|
|
|
+ </el-col>
|
|
|
+ <el-col span="12">
|
|
|
+ <sa-info name="车牌号" br>{{bigData.veNo}}</sa-info>
|
|
|
+ <sa-info name="互市区" br>{{bigData.fieldName}}</sa-info>
|
|
|
+ <sa-info name="创建时间" br>{{bigData.createTime}}</sa-info>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ <hr>
|
|
|
+ <el-form ref="form" :model='p' @submit.native.prevent>
|
|
|
+ <div style="margin: 15px 0px 15px 0px;">详情-边民订单</div>
|
|
|
+ <el-button v-if="sa.isAuth('tb-order-edit-price')"
|
|
|
+ type="primary" style="margin-bottom:10px;" @click="editPriceByIds()">批量修改总价</el-button>
|
|
|
+ </el-form>
|
|
|
+ <!-- ------------- 数据列表 ------------- -->
|
|
|
+ <el-table class="data-table" ref="data-table" :data="dataList" >
|
|
|
+ <sa-td type="selection"></sa-td>
|
|
|
+ <sa-td name="订单号" prop="tradeNo" width="180px"></sa-td>
|
|
|
+ <sa-td name="买家" prop="buyUserName" ></sa-td>
|
|
|
+ <sa-td name="商家名称" prop="enterpriseName" width="280px"></sa-td>
|
|
|
+ <sa-td name="商品名称" prop="goodsNames" width="200px"></sa-td>
|
|
|
+ <sa-td name="总重量" prop="totalWeight" ></sa-td>
|
|
|
+ <sa-td name="车牌号" prop="veNo" ></sa-td>
|
|
|
+ <sa-td name="总金额" prop="totalPrice" ></sa-td>
|
|
|
+ <sa-td name="上架金额(元)" prop="upPrice" ></sa-td>
|
|
|
+ <sa-td name="是否上架" prop="upStatus" >
|
|
|
+ <template slot-scope="s">
|
|
|
+ <div v-if="s.row.upStatus==2">已上架</div>
|
|
|
+ <div v-else>未上架</div>
|
|
|
+ </template>
|
|
|
+ </sa-td>
|
|
|
+ <sa-td name="是否转售" prop="resaleStatus" >
|
|
|
+ <template slot-scope="s">
|
|
|
+ <div v-if="s.row.resaleStatus==1">已转售</div>
|
|
|
+ <div v-else>未转售</div>
|
|
|
+ </template>
|
|
|
+ </sa-td>
|
|
|
+ <el-table-column label="操作" fixed="right" width="200px">
|
|
|
+ <template slot-scope="s">
|
|
|
+ <el-button v-if="s.row.upStatus==2&&s.row.resaleStatus==0&&sa.isAuth('tb-order-edit-price')"
|
|
|
+ class="c-btn" type="success" icon="el-icon-view" @click="editPrice(s.row)">修改总价</el-button>
|
|
|
+ <el-button v-if="s.row.upStatus==2&&s.row.resaleStatus==0&&sa.isAuth('tb-order-edit-price')"
|
|
|
+ class="c-btn" type="primary" icon="el-icon-plus" @click="sel(s.row)">转售二级</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <!-- ------------- 分页 ------------- -->
|
|
|
+ <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
|
|
|
+ </div>
|
|
|
+ <el-dialog :title="model.title" :visible.sync="model.visible" width="500px">
|
|
|
+ <div>
|
|
|
+ 当前价格(元):{{model.form.upPrice}}
|
|
|
+ </div>
|
|
|
+ <sa-item type="num" name="金额" v-model="model.form.selPrice" placeholder="确认金额" br></sa-item>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="model.visible = false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="save">保存</el-button>
|
|
|
+ <!--<el-button type="primary" @click="sel">转售二级</el-button>-->
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog :title="model1.title" :visible.sync="model1.visible" width="500px">
|
|
|
+ <sa-item type="num" name="金额" v-model="model1.selPrice" placeholder="确认金额" br></sa-item>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="model1.visible = false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="savePriceByIds">保存</el-button>
|
|
|
+ <!--<el-button type="primary" @click="sel">转售二级</el-button>-->
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+ <script>
|
|
|
+ var app = new Vue({
|
|
|
+ components: {
|
|
|
+ "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
|
|
|
+ "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
|
|
|
+ "sa-info": httpVueLoader('../../sa-frame/com/sa-info.vue')
|
|
|
+ },
|
|
|
+ el: '.vue-box',
|
|
|
+ data: {
|
|
|
+ id: sa.p('id', 0),
|
|
|
+ bigData: [],
|
|
|
+ model: {
|
|
|
+ title: '修改价格',
|
|
|
+ visible: false,
|
|
|
+ form: {
|
|
|
+ id:'',
|
|
|
+ upPrice:'',
|
|
|
+ selPrice:0
|
|
|
+ }
|
|
|
+ },
|
|
|
+ model1: {
|
|
|
+ title: '批量修改订单价格',
|
|
|
+ visible: false,
|
|
|
+ ids:'',
|
|
|
+ selPrice:0
|
|
|
+ },
|
|
|
+ p: { // 查询参数
|
|
|
+ tradeNo: '', // 订单号
|
|
|
+ buyUserName: '', // 买家
|
|
|
+ enterpriseName: '', // 商家名称
|
|
|
+ platSeqNo: sa.p('platSeqNo', 0),
|
|
|
+ pageNo: 1, // 当前页
|
|
|
+ pageSize: 20, // 页大小
|
|
|
+ sortType: 0 // 排序方式
|
|
|
+ },
|
|
|
+ dataCount: 0,
|
|
|
+ dataList: [], // 数据集合
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 批量修改总价
|
|
|
+ editPriceByIds: function() {
|
|
|
+ // 获取选中元素的id列表
|
|
|
+ let selection = this.$refs['data-table'].selection;
|
|
|
+ let ids = sa.getArrayField(selection, 'id');
|
|
|
+ if(selection.length == 0) {
|
|
|
+ return sa.msg('请至少选择一条数据')
|
|
|
+ }
|
|
|
+ let selectList = [];
|
|
|
+ selectList = this.dataList.filter(item => ids.includes(item.id));
|
|
|
+ for (let i = 0; i < selectList.length; i++) {
|
|
|
+ if(selectList[i].upStatus != 2) {
|
|
|
+ return sa.msg('当前选中数据包含未上架订单,不可修改总价,请重新选择!');
|
|
|
+ }
|
|
|
+ if(selectList[i].resaleStatus != 0) {
|
|
|
+ return sa.msg('当前选中数据包含已转售订单,不可修改总价,请重新选择!')
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.model1={
|
|
|
+ title:'批量修改订单价格',
|
|
|
+ visible:true,
|
|
|
+ ids:ids,
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 修改总价
|
|
|
+ editPrice(item){
|
|
|
+ this.model={
|
|
|
+ title:'修改订单【'+item.tradeNo+'】价格',
|
|
|
+ visible:true,
|
|
|
+ form:item
|
|
|
+ }
|
|
|
+ },
|
|
|
+ savePriceByIds() {
|
|
|
+ let ids=this.model1.ids;
|
|
|
+ if(!ids){
|
|
|
+ sa.error('当前没有选择数据,请至少选择一条数据')
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let price=this.model1.selPrice;
|
|
|
+ if(!price){
|
|
|
+ sa.error('请输入金额')
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ sa.ajax('/level-one-server/TbOrder/editUpPriceByIds', {ids:ids.toString(),price:price}, function(res) {
|
|
|
+ this.f5();
|
|
|
+ this.model1.visible=false;
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
+ save(){
|
|
|
+ let price=this.model.form.selPrice;
|
|
|
+ if(!price){
|
|
|
+ sa.error('请输入金额')
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ sa.ajax('/level-one-server/TbOrder/editUpPrice', {id:this.model.form.id,price:price}, function(res) {
|
|
|
+ this.f5();
|
|
|
+ this.model.visible=false;
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
+
|
|
|
+ // 转售二级
|
|
|
+ sel(item){
|
|
|
+ sa.confirm('是否转售到二级市场,此操作不可撤销', function(){
|
|
|
+ sa.ajax('/level-two-server/TbOrders/addOrderByResale', {id:item.id,resalePrice:item.upPrice}, function(res) {
|
|
|
+ this.f5();
|
|
|
+ }.bind(this));
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
+ // 刷新
|
|
|
+ f5: function() {
|
|
|
+ sa.ajax('/level-one-server/TbOrder/getList', sa.removeNull(this.p), function(res) {
|
|
|
+ this.dataList = res.data; // 数据
|
|
|
+ this.dataCount = res.dataCount; // 数据总数
|
|
|
+ sa.f5TableHeight(); // 刷新表格高度
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
+ // 查看银行回执
|
|
|
+ getBank: function(data) {
|
|
|
+ sa.showIframe('银行回执', 'tb-order-bank-list.html?tradeNo=' + bigData.tradeNo, '1300px', '90%');
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created: function() {
|
|
|
+ this.f5();
|
|
|
+ sa.ajax('/level-one-server/HtTradeSettlement/getById', {id : this.id}, function(res) {
|
|
|
+ this.bigData = res.data; // 数据
|
|
|
+ sa.f5TableHeight(); // 刷新表格高度
|
|
|
+ }.bind(this));
|
|
|
+ sa.onInputEnter();
|
|
|
+ }
|
|
|
+ })
|
|
|
+ </script>
|
|
|
+ </body>
|
|
|
+</html>
|