|
|
|
@ -16,7 +16,14 @@
|
|
|
|
|
<!-- 控件模块 --> |
|
|
|
|
<div class="flex-c-sb"> |
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"></div> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<el-button type="primary" @click="exporTemp"> |
|
|
|
|
<el-icon><Download /></el-icon>导出模板</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" @click="ImportTemplate"> |
|
|
|
|
<el-icon><Download /></el-icon>导入模板</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
|
|
|
@ -143,7 +150,32 @@
|
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
<!-- 导入模板 --> |
|
|
|
|
<el-dialog v-model="dialogTemp" title="导入模板" width="500"> |
|
|
|
|
<el-upload |
|
|
|
|
class="upload-demo" |
|
|
|
|
drag |
|
|
|
|
action="/api/logpm-basicdata/basicdataPrice/upload" |
|
|
|
|
:headers="headers" |
|
|
|
|
:on-success="handleSuccess" |
|
|
|
|
:before-upload="beforeAvatarUpload" |
|
|
|
|
method="post" |
|
|
|
|
> |
|
|
|
|
<el-icon class="el-icon--upload"><upload-filled /></el-icon> |
|
|
|
|
<div class="el-upload__text">点击上传 <em>或者拖拽上传</em></div> |
|
|
|
|
<template #tip> |
|
|
|
|
<div class="el-upload__tip">请上传Excel模板文件</div> |
|
|
|
|
</template> |
|
|
|
|
</el-upload> |
|
|
|
|
|
|
|
|
|
<template #footer> |
|
|
|
|
<div class="dialog-footer"> |
|
|
|
|
<el-button @click="dialogTemp = false">关闭</el-button> |
|
|
|
|
<el-button type="primary" @click="dialogVisible"> 确定 </el-button> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
<div id="createdDiv"></div> |
|
|
|
|
<!-- 列表配置显示 --> |
|
|
|
|
<edittablehead |
|
|
|
|
@setcolum="setnewcolum" |
|
|
|
@ -156,18 +188,21 @@
|
|
|
|
|
<script setup> |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
|
import { columnList } from '@/option/Pricesystem/index.js'; |
|
|
|
|
import { $_getpriceTemplate, $_deletelpriceTemplate } from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { $_getpriceTemplate, $_deletelpriceTemplate , $_getexport} from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { getBasicdataPrice, postBasicdataPrice } from '@/api/Pricesystem/index'; //价格模板 |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
|
|
|
|
import { getToken } from 'utils/auth'; // 用于获取存储的Token |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
|
|
|
import { popmsg } from '@/utils/poptxt'; |
|
|
|
|
import { downloadXls, deepClone } from '@/utils/util'; |
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
const $router = useRouter(); //跳转 |
|
|
|
|
const $useStore = useStore(); //权限 |
|
|
|
|
const $route = useRoute(); //获取地址栏参数 |
|
|
|
|
const dialogTemp=ref(false) |
|
|
|
|
const details = reactive({ |
|
|
|
|
/** 是否开启搜索 */ |
|
|
|
|
search: false, |
|
|
|
@ -239,7 +274,56 @@ const details = reactive({
|
|
|
|
|
/** 价格模板数组 */ |
|
|
|
|
templateArr: [], |
|
|
|
|
}); |
|
|
|
|
const headers = computed(() => { |
|
|
|
|
return { 'Blade-Auth': 'Bearer ' + getToken() }; |
|
|
|
|
}); |
|
|
|
|
const handleSuccess = res => { |
|
|
|
|
if (res.code == 200 && !res.data) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
} else if (res.code == 200 && res.data) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '导入失败,请查看原因重新导入!', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
popmsg(res); |
|
|
|
|
} else{ |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.msg, |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log(res, 'datas'); |
|
|
|
|
}; |
|
|
|
|
// 上传文件之前 |
|
|
|
|
const beforeAvatarUpload= (rawFile) => { |
|
|
|
|
console.log(rawFile,'rawFile'); |
|
|
|
|
|
|
|
|
|
if (rawFile.type !== 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') { |
|
|
|
|
ElMessage.error('请上传EXCEL文件!') |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
return true |
|
|
|
|
} |
|
|
|
|
// 导出模板 |
|
|
|
|
const exporTemp = () => { |
|
|
|
|
ElMessageBox.confirm('是否导出价格模板', '提示', { |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(() => { |
|
|
|
|
$_getexport().then(res => { |
|
|
|
|
downloadXls(res.data, `价格模板.xlsx`); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 导入模板 |
|
|
|
|
const ImportTemplate = () => { |
|
|
|
|
dialogTemp.value = true; |
|
|
|
|
}; |
|
|
|
|
/** 生效时间 -- 生效时间不能大于到期时间 */ |
|
|
|
|
const time1 = time => { |
|
|
|
|
if (!details.form.expiryTime) return false; |
|
|
|
|