|
@@ -3,13 +3,13 @@
|
|
|
<span class="dialog-close" @click="handleClose"></span>
|
|
|
<span class="title-dialog">浦江游览企业信息</span>
|
|
|
<el-table :data="tableData.value" class="table-default dw-table" stripe>
|
|
|
- <el-table-column label="序号" type="index" />
|
|
|
- <el-table-column label="企业名称" prop="unitName" min-width="160" show-overflow-tooltip />
|
|
|
- <el-table-column label="水路运输经营许可证号" prop="shipName" min-width="90" show-overflow-tooltip />
|
|
|
- <el-table-column label="法定代表人" prop="cargoName" min-width="60" show-overflow-tooltip />
|
|
|
+ <el-table-column label="序号" type="index" :dataformatas="indexCreate" />
|
|
|
+ <el-table-column label="企业名称" prop="companyName" min-width="160" show-overflow-tooltip />
|
|
|
+ <el-table-column label="水路运输经营许可证号" prop="certNumber" min-width="90" show-overflow-tooltip />
|
|
|
+ <el-table-column label="法定代表人" prop="legalPerson" min-width="60" show-overflow-tooltip />
|
|
|
<el-table-column label="有效期" min-width="90" show-overflow-tooltip>
|
|
|
<template #default="scope">
|
|
|
- <span>{{ scope.row.startTime.slice(5,16) }}</span>-<span>{{ scope.row.endTime.slice(5,16) }}</span>
|
|
|
+ <span>{{ scope.row.effectDate}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -20,6 +20,7 @@
|
|
|
:total="total"
|
|
|
layout="prev, pager, next"
|
|
|
@current-change="handlePageChange"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
>
|
|
|
</el-pagination>
|
|
|
</div>
|
|
@@ -27,39 +28,43 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { reactive, ref, watch } from 'vue'
|
|
|
-import { GetZxjc } from '@/apis/yyjg'
|
|
|
+ import {onMounted, reactive, ref, watch} from 'vue'
|
|
|
+import { GetZxjc,GetPJYLUnits } from '@/apis/yyjg'
|
|
|
import { ElTable, ElTableColumn, ElPagination } from 'element-plus'
|
|
|
import 'element-plus/es/components/table/style/css'
|
|
|
import 'element-plus/es/components/table-column/style/css'
|
|
|
import 'element-plus/es/components/pagination/style/css'
|
|
|
|
|
|
-
|
|
|
-const dangerIsFinishList = ref(0)
|
|
|
-
|
|
|
const tableData = reactive({value: []})
|
|
|
|
|
|
-function getData(isFinish, size, index) {
|
|
|
- GetZxjc(isFinish, size, index).then(res => {
|
|
|
+function getData() {
|
|
|
+ GetPJYLUnits(currentPage.value,pageSize.value).then(res => {
|
|
|
tableData.value = res.data?.Rows || []
|
|
|
total.value = res.data.TotalRowCount
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
+ onMounted(() => {
|
|
|
+ getData()
|
|
|
+ })
|
|
|
const currentPage = ref(1)
|
|
|
const pageSize = ref(10)
|
|
|
const total = ref(0)
|
|
|
+function indexCreate(row, column, cellValue, index) {
|
|
|
+ return index + 1 + pageSize.value*(currentPage.value - 1)
|
|
|
+}
|
|
|
|
|
|
function handlePageChange(val) {
|
|
|
currentPage.value = val
|
|
|
- getData(dangerIsFinishList.value, pageSize.value, val)
|
|
|
+ getData()
|
|
|
}
|
|
|
|
|
|
-watch(dangerIsFinishList, (val) => {
|
|
|
- getData(val, pageSize.value, 1)
|
|
|
-},{immediate:true})
|
|
|
-
|
|
|
+function handleSizeChange(val) {
|
|
|
+ // debugger
|
|
|
+ pageSize.value = val
|
|
|
+ currentPage.value = 1
|
|
|
+ getData()
|
|
|
|
|
|
+}
|
|
|
const emits = defineEmits(['closeBoatList'])
|
|
|
|
|
|
function handleClose() {
|