ソースを参照

bug修改

master
yangpeilai 3日前
コミット
e9e8d54979

+ 3
- 2
src/views/onlineBusinessHall/inquiryStatistics/licensePlateVerificationQuery/index.vue ファイルの表示

@@ -171,13 +171,14 @@
dialogTableVisible.value = true
}
loading1.value = false
}).catch((error) => {
loading1.value = false
})
} else {
console.log('错误', fields)
}
})
}
function refreshLeft1(formEl) {
loading1.value = false
searchForm1.value.vehiclePlate = ''
searchForm1.value.vehiclePlateColor = ''
searchForm1.value.releaseType = ''

+ 6
- 1
src/views/system/agency/index.vue ファイルの表示

@@ -153,6 +153,7 @@ import $storeinitData from "@/store/initData"; //引入tab vuex
import { useRoute } from 'vue-router';
import { IsPermission } from "@/router/routerUtil";
import { getZxqdFindConfig } from "./data.js";
import {exportFn} from "@/views/settlement/exportFn";
//或取路由传入过来的对象数据
const route = useRoute();
const crudRef = ref();
@@ -240,6 +241,10 @@ const request = (data: any, type: any) => {
}
})
}
// 导出
function downloadHandle() {
exportFn('/userw/agency/export', searchForm.value, '渠道导出')
}
const getItmeLiet = () => {
vShowDoalog.value = true
if (crudRefTwo.value) {
@@ -301,7 +306,7 @@ const field = ref({
refresh: false,
},
searchOperation: {
isDownload: false,
isDownload: true,
isAdd: false,
isTransferMachine: false,
},

+ 15
- 8
src/views/system/branch/index.vue ファイルの表示

@@ -17,8 +17,8 @@
:on-exceed="handleExceed" :show-file-list="false" :multiple="false">
<el-button type="primary" class="btn" icon="Upload">导入网点</el-button>
</el-upload>
<el-button type="warning" icon="Download" @click="templateDownload" class="btn">网点模板下载</el-button>
<el-button type="warning" icon="Download" @click="handleFileName()">办理点模板下载</el-button>
<el-button type="warning" icon="Download" @click="handleFileName(1)" class="btn">网点模板下载</el-button>
<el-button type="warning" icon="Download" @click="handleFileName(2)">办理点模板下载</el-button>
</template>
<template #CustomButton>
<el-button type="success" @click="getItmeLiet()">
@@ -467,7 +467,7 @@ function refreshLeft2() {

// 导出
function downloadHandle() {
exportFn('/invw/api/cardBatch/export', searchForm.value, '网点导出')
exportFn('/userw/serviceHall/serviceHallExport', searchForm.value, '网点导出')
}

//获取列表
@@ -872,11 +872,18 @@ function handleImport(row) {
serviceHallId.value = row.serviceHallId
}
//模板下载
function handleFileName() {
BaseService.getDownload(
import.meta.env.VITE_APP_EXPORT_URL_NEW + 'zhywpt-issuer/template/userw/办理地址信息导入模板.xlsx',
'办理地址信息导入模板'
)
function handleFileName(type) {
if (type === 2) {
BaseService.getDownload(
import.meta.env.VITE_APP_EXPORT_URL_NEW + 'zhywpt-issuer/template/userw/办理地址信息导入模板.xlsx',
'办理地址信息导入模板'
)
}else {
BaseService.getDownload(
import.meta.env.VITE_APP_EXPORT_URL_NEW + 'zhywpt-issuer/template/userw/网点信息导入模板.xlsx',
'网点信息导入模板'
)
}
}
//编辑
function handleEdit(row: IObject) {

+ 10
- 0
src/views/system/userManage/index.vue ファイルの表示

@@ -311,6 +311,16 @@
label: '注册时间',
width: '150px',
},
{
prop: 'createName',
label: '创建人',
width: '100px',
},
{
prop: 'updateName',
label: '修改人',
width: '100px',
},
],
})


読み込み中…
キャンセル
保存