123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <!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>
- </head>
- <body>
- <div class="vue-box" style="display: none;" :style="'display: block;'">
- <div class="c-panel">
- <!-- ------------- 检索参数 ------------- -->
- <div class="c-title">检索参数</div>
- <el-form ref="form" :model='p' @submit.native.prevent>
- <sa-item type="text" name="预申报编号" v-model="p.platSeqNo" width="8em"></sa-item>
- <sa-item type="text" name="申报单编号" v-model="p.declareId" width="8em"></sa-item>
- <sa-item type="text" name="商品名称" v-model="p.goodsNames" width="7em"></sa-item>
- <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
- <el-button size="mini" type="info" @click="sa.f5()">重置</el-button>
- </el-form>
- <!-- ------------- 数据列表 ------------- -->
- <el-table class="data-table" ref="data-table" :data="dataList" >
- <sa-td type="index" name="序号"></sa-td>
- <sa-td name="申报单编号" prop="declareId" width="220px"></sa-td>
- <sa-td name="申报人姓名" prop="declareName" ></sa-td>
- <sa-td name="互市区" prop="fieldName" width="160"></sa-td>
- <sa-td name="商铺名称" prop="shopName" width="160"></sa-td>
- <sa-td name="商品名称" prop="goodsNames" width="160"></sa-td>
- <sa-td name="总金额" prop="sumAmt" ></sa-td>
- <sa-td name="总毛重(kg)" prop="sumGrossWt" ></sa-td>
- <sa-td name="总净重(kg)" prop="sumNetWt" ></sa-td>
- <sa-td name="运输方式" prop="trafMode" ></sa-td>
- <sa-td name="币制" prop="currCode" ></sa-td>
- <sa-td name="件数" prop="packNo" ></sa-td>
- <sa-td name="车牌号" prop="veNo" ></sa-td>
- <sa-td name="提运单号" prop="billNo" width="160"></sa-td>
- <sa-td name="航次号" prop="voyageNo" width="160"></sa-td>
- <sa-td name="申报日期" prop="createTime" width="160">
- <template slot-scope="s">
- {{sa.forDate(s.row.declTime, 1)}}
- </template>
- </sa-td>
- <sa-td name="退单时间" prop="returnsTime" width="160"></sa-td>
- <el-table-column label="操作" width="140px" fixed="right" >
- <template slot-scope="s">
- <el-button class="c-btn" type="success" @click="get(s.row)">查看</el-button>
- <el-button class="c-btn" type="primary" @click="getOrder(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>
- </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'),
- },
- el: '.vue-box',
- data: {
- p: { // 查询参数
- platSeqNo: '', // 预申报编号
- declareId: '', // 申报单编号
- goodsNames: '', // 商品名称
- chargebacks:1,
- pageNo: 1, // 当前页
- pageSize: 10, // 页大小
- sortType: 0 ,// 排序方式
- },
- dataCount: 0,
- dataList: [], // 数据集合
- },
- methods: {
- // 刷新
- f5: function() {
- sa.ajax('/level-one-server/HtTradeSettlement/getList', sa.removeNull(this.p), function(res) {
- this.dataList = res.data; // 数据
- this.dataCount = res.dataCount; // 数据总数
- sa.f5TableHeight(); // 刷新表格高度
- }.bind(this));
- },
- // 查看
- get: function(data) {
- sa.showIframe('数据详情', 'ht-trade-settlement-info.html?id=' + data.id+'&type=chargebacks', '1050px', '90%');
- },
- getOrder(data){
- sa.showIframe('边民订单', 'ht-trade-settlement-order.html?mainId='+data.id, '90%', '94%');
- },
-
- },
- created: function() {
- this.f5();
- sa.onInputEnter();
- }
- })
- </script>
- </body>
- </html>
|