|
@@ -0,0 +1,106 @@
|
|
|
+<!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="platSeqNo" width="160px"></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: '', // 商品名称
|
|
|
+ returns: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=returns', '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>
|