|
|
|
@ -1,6 +1,7 @@ |
|
|
|
<template> |
|
|
|
<div class="mod-config"> |
|
|
|
<el-form :inline="true" label-position="top" label-width="100px" style="margin-top: 0px;"> |
|
|
|
<el-button @click="filterVisible = true">搜索</el-button> |
|
|
|
<el-button @click="getData()" type="primary" style="margin-left: 2px;margin-top: 0px">{{ buttons.search }} |
|
|
|
</el-button> |
|
|
|
<el-button @click="addModal()" type="primary" :disabled="authAdd" |
|
|
|
@ -163,6 +164,7 @@ |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist> |
|
|
|
<filter-search :visible.sync="filterVisible" @search="getSiteDataDemo"></filter-search> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
@ -185,16 +187,19 @@ import { |
|
|
|
} from "@/api/table.js" |
|
|
|
import Chooselist from '@/views/modules/common/Chooselist' |
|
|
|
import {siteList} from "../../../api/base/site"; |
|
|
|
import FilterSearch from "../../common/filterSearch.vue"; |
|
|
|
|
|
|
|
var functionId = '100001002'; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "factoryInformation", |
|
|
|
components: { |
|
|
|
FilterSearch, |
|
|
|
column, Chooselist |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
filterVisible:false, |
|
|
|
rowSite: '', |
|
|
|
accessSiteVisible: false, |
|
|
|
accessSiteList: [], |
|
|
|
@ -972,7 +977,7 @@ export default { |
|
|
|
}).catch((error)=>{ |
|
|
|
this.$message.error(error) |
|
|
|
}) |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
created() { |
|
|
|
this.getMultiLanguageList()//刷新按钮 |
|
|
|
@ -981,9 +986,6 @@ export default { |
|
|
|
this.getButtonAuthData(); |
|
|
|
this.getTableUserColumn() |
|
|
|
}, |
|
|
|
activated() { |
|
|
|
this.$store.commit("sift/commitSearchFunction",this.getSiteDataDemo) |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
|
|
|