|  | @@ -4,9 +4,7 @@
 | 
	
		
			
				|  |  |        v-loading="loading"
 | 
	
		
			
				|  |  |        :data="tableData"
 | 
	
		
			
				|  |  |        :header-cell-style="{ borderBottom: '1px dashed #dfe6ec' }"
 | 
	
		
			
				|  |  | -      @selection-change="handleSelectionChange"
 | 
	
		
			
				|  |  |      >
 | 
	
		
			
				|  |  | -      <el-table-column type="selection" width="55" align="center" />
 | 
	
		
			
				|  |  |        <el-table-column
 | 
	
		
			
				|  |  |          prop="refno1"
 | 
	
		
			
				|  |  |          :show-overflow-tooltip="true"
 | 
	
	
		
			
				|  | @@ -46,17 +44,6 @@
 | 
	
		
			
				|  |  |            <span v-else-if="scope.row.refno2 === 'JSCCF'">计算仓储费</span>
 | 
	
		
			
				|  |  |          </template>
 | 
	
		
			
				|  |  |        </el-table-column>
 | 
	
		
			
				|  |  | -      <el-table-column
 | 
	
		
			
				|  |  | -        v-for="(item, index) in getRowList"
 | 
	
		
			
				|  |  | -        :key="index"
 | 
	
		
			
				|  |  | -        :label="item.name"
 | 
	
		
			
				|  |  | -        :width="item.width"
 | 
	
		
			
				|  |  | -        :prop="item.label"
 | 
	
		
			
				|  |  | -        align="center"
 | 
	
		
			
				|  |  | -        :show-overflow-tooltip="true"
 | 
	
		
			
				|  |  | -        sortable
 | 
	
		
			
				|  |  | -        :fixed="item.fixed"
 | 
	
		
			
				|  |  | -      />
 | 
	
		
			
				|  |  |        <el-table-column prop="address" label="操作" width="80">
 | 
	
		
			
				|  |  |          <template slot-scope="scope">
 | 
	
		
			
				|  |  |            <span style="cursor: pointer" @click="approval(scope.row)"
 | 
	
	
		
			
				|  | @@ -72,7 +59,7 @@
 | 
	
		
			
				|  |  |        :limit.sync="queryParams.pageSize"
 | 
	
		
			
				|  |  |        @pagination="getList"
 | 
	
		
			
				|  |  |      />
 | 
	
		
			
				|  |  | -      <el-dialog
 | 
	
		
			
				|  |  | +    <el-dialog
 | 
	
		
			
				|  |  |        title="消息提示"
 | 
	
		
			
				|  |  |        :visible.sync="dialogVisible"
 | 
	
		
			
				|  |  |        width="80%"
 | 
	
	
		
			
				|  | @@ -100,7 +87,13 @@ export default {
 | 
	
		
			
				|  |  |    data() {
 | 
	
		
			
				|  |  |      return {
 | 
	
		
			
				|  |  |        tableData: [],
 | 
	
		
			
				|  |  | -       dialogVisible: false,
 | 
	
		
			
				|  |  | +      dialogVisible: false,
 | 
	
		
			
				|  |  | +      total: 0,
 | 
	
		
			
				|  |  | +      text: "",
 | 
	
		
			
				|  |  | +      queryParams: {
 | 
	
		
			
				|  |  | +        pageNum: 1,
 | 
	
		
			
				|  |  | +        pageSize: 10,
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  |      };
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    created() {
 | 
	
	
		
			
				|  | @@ -108,17 +101,22 @@ export default {
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  |      getList() {
 | 
	
		
			
				|  |  | +      this.loading = true;
 | 
	
		
			
				|  |  |        let data = {
 | 
	
		
			
				|  |  |          actId: "",
 | 
	
		
			
				|  |  |        };
 | 
	
		
			
				|  |  |        inquiry(data).then((res) => {
 | 
	
		
			
				|  |  |          this.tableData = res.data;
 | 
	
		
			
				|  |  | +        this.loading = false;
 | 
	
		
			
				|  |  |        });
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      querytoDo(res) {
 | 
	
		
			
				|  |  |        this.dialogVisible = true;
 | 
	
		
			
				|  |  |        this.text = res;
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  | +    handleClose(done) {
 | 
	
		
			
				|  |  | +      this.dialogVisible = false;
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |  };
 | 
	
		
			
				|  |  |  </script>
 |