|
|
|
@ -7,9 +7,7 @@
|
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query" class="el-fr-d"> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item class="el-btn"> |
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item class="el-btn"> </el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
</el-row> |
|
|
|
|
|
|
|
|
@ -25,11 +23,17 @@
|
|
|
|
|
<el-button type="primary" @click="Deletetemplate"> |
|
|
|
|
<el-icon><Delete /></el-icon>删 除</el-button |
|
|
|
|
> |
|
|
|
|
<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> |
|
|
|
|
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
|
|
|
|
<el-button icon="el-icon-delete" @click="searchReset">清 空</el-button> |
|
|
|
|
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
|
|
|
|
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
|
|
|
|
<el-button icon="Search" @click="searchHide" circle></el-button> |
|
|
|
@ -42,7 +46,7 @@
|
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<tablecmt |
|
|
|
|
class="tableNode" |
|
|
|
|
:columnList="columnList" |
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.list" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
@ -93,12 +97,15 @@
|
|
|
|
|
<script setup> |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
|
import { columnList } from '@/option/financialsector/index.js'; |
|
|
|
|
import { $_getpriceTemplate, $_deletelpriceTemplate } from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { |
|
|
|
|
$_getpriceTemplate, |
|
|
|
|
$_deletelpriceTemplate, |
|
|
|
|
$_getexport, |
|
|
|
|
} from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import { processRowProperty, setNodeHeight, deepClone } from '@/utils/util'; |
|
|
|
|
import { processRowProperty, setNodeHeight, deepClone, downloadXls } from '@/utils/util'; |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
const $router = useRouter(); //跳转 |
|
|
|
@ -251,15 +258,17 @@ const selectionChange = list => {
|
|
|
|
|
}; |
|
|
|
|
// 网页顶部搜索按钮 |
|
|
|
|
const searchChange = () => { |
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
priceTemplate(); |
|
|
|
|
}; |
|
|
|
|
// 每页多少条 |
|
|
|
|
const sizeChange = val => { |
|
|
|
|
page.value.pageSize = val; |
|
|
|
|
details.page.pageSize = val; |
|
|
|
|
priceTemplate(); |
|
|
|
|
}; |
|
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
|
const currentChange = val => { |
|
|
|
|
page.value.currentPage = val; |
|
|
|
|
details.page.currentPage = val; |
|
|
|
|
priceTemplate(); |
|
|
|
|
}; |
|
|
|
|
// 刷新按钮 |
|
|
|
|
const searchChangeS = () => { |
|
|
|
@ -290,6 +299,7 @@ const priceTemplate = () => {
|
|
|
|
|
let data = { |
|
|
|
|
current: details.page.currentPage, |
|
|
|
|
size: details.page.pageSize, |
|
|
|
|
...details.query, |
|
|
|
|
}; |
|
|
|
|
details.loadingObj.list = true; |
|
|
|
|
$_getpriceTemplate(data) |
|
|
|
@ -303,6 +313,14 @@ const priceTemplate = () => {
|
|
|
|
|
details.loadingObj.list = false; |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 清空 |
|
|
|
|
const searchReset = () => { |
|
|
|
|
details.columnList.forEach(item => { |
|
|
|
|
item.values = ''; |
|
|
|
|
}); |
|
|
|
|
details.query = {}; |
|
|
|
|
priceTemplate(); |
|
|
|
|
}; |
|
|
|
|
priceTemplate(); |
|
|
|
|
// 新增模板 |
|
|
|
|
const Addtemplate = () => { |
|
|
|
@ -359,6 +377,22 @@ const Modifytemplate = row => {
|
|
|
|
|
path: '/financialsector/FinanceHome', |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 导出模板 |
|
|
|
|
const exporTemp = () => { |
|
|
|
|
ElMessageBox.confirm('是否导出价格模板', 'Warning', { |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(() => { |
|
|
|
|
$_getexport().then(res => { |
|
|
|
|
downloadXls(res.data, `价格模板.xlsx`); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 导入模板 |
|
|
|
|
const ImportTemplate=()=>{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|