|
@@ -28,7 +28,7 @@
|
|
|
<div class="table-yl box-public-shadow-mini">
|
|
|
<div class="table-yl-head flex">
|
|
|
<div class="title">列设置</div>
|
|
|
- <el-button @click="restData" type="primary" size="small" class="rmScs">初始化</el-button>
|
|
|
+ <!-- <el-button @click="restData" type="primary" size="small" class="rmScs">初始化</el-button> -->
|
|
|
</div>
|
|
|
<div class="table-yl-content">
|
|
|
<el-table :data="tableData" stripe border height="100%" style="width: 100%">
|
|
@@ -167,6 +167,7 @@
|
|
|
<script>
|
|
|
import Dialog from '@/layout/components/Dialog'
|
|
|
import pb from '@/layout/mixin/getPublicData'
|
|
|
+import { initColumnSet } from '@/api/newLogin'
|
|
|
export default {
|
|
|
name: 'Table',
|
|
|
mixins: [pb],
|
|
@@ -183,6 +184,10 @@ export default {
|
|
|
type: String,
|
|
|
default: ''
|
|
|
},
|
|
|
+ authTable: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
+ },
|
|
|
},
|
|
|
components: { Dialog },
|
|
|
data () {
|
|
@@ -227,15 +232,24 @@ export default {
|
|
|
handler (obj) {
|
|
|
if (obj.queryTemplateID) {
|
|
|
obj.serviceID = obj.queryTemplateID
|
|
|
- this.getTable(obj.queryTemplateID)
|
|
|
+ // this.getTable(obj.queryTemplateID)
|
|
|
}
|
|
|
this.form = obj
|
|
|
+ this.restData()
|
|
|
},
|
|
|
immediate: true
|
|
|
- }
|
|
|
+ },
|
|
|
+ authTable: {
|
|
|
+ handler (val) {
|
|
|
+ if (val) {
|
|
|
+ this.restData()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ immediate: true
|
|
|
+ },
|
|
|
},
|
|
|
async mounted () {
|
|
|
- const result = await this.getQuery(3, false, { serviceType: 1 })
|
|
|
+ const result = await this.getQuery(SERVICE_ID.sysAllMenuId, false, { serviceType: 1 })
|
|
|
this.authArrs = result
|
|
|
},
|
|
|
methods: {
|
|
@@ -255,7 +269,7 @@ export default {
|
|
|
//表格数据提交
|
|
|
async handleOk () {
|
|
|
this.tableForm.serviceOutPutId = this.form.auth_id
|
|
|
- const result = await this.generalDataReception(18122, this.tableForm, 2)
|
|
|
+ const result = await this.generalDataReception(SERVICE_ID.getTableColumnId, this.tableForm, 2)
|
|
|
this.tableFlag = false
|
|
|
},
|
|
|
//表格取消
|
|
@@ -275,41 +289,19 @@ export default {
|
|
|
serviceChange (val) {
|
|
|
if (val) {
|
|
|
this.form.queryTemplateID = val
|
|
|
- this.getTable(val)
|
|
|
}
|
|
|
},
|
|
|
handleEdit (row) {
|
|
|
this.tableFlag = true
|
|
|
this.tableForm = row
|
|
|
},
|
|
|
- async getData () {
|
|
|
- const res = await this.getQuery(18122, false, { serviceOutPutId: this.form.auth_id })
|
|
|
- if (res && res.length) {
|
|
|
- this.allData = res
|
|
|
- this.delData()
|
|
|
- }
|
|
|
- },
|
|
|
- async delData () {
|
|
|
- const res = this.allData
|
|
|
- // for (let i = 0; i < res.length; i++) {
|
|
|
- // const element = res[i];
|
|
|
- // element.serviceOutPutId = this.form.auth_id;
|
|
|
- // }
|
|
|
- const result = await this.generalDataReception(18122, res, 3)
|
|
|
- if (result) {
|
|
|
- this.addData()
|
|
|
+ async restData () {
|
|
|
+ const { code, returnData } = await initColumnSet({ auth_id: this.form.auth_id })
|
|
|
+ if (code && returnData && returnData.length) {
|
|
|
+ this.tableData = returnData
|
|
|
+ } else {
|
|
|
+ this.tableData = []
|
|
|
}
|
|
|
- },
|
|
|
- async addData () {
|
|
|
- const res = this.tableData
|
|
|
- for (let i = 0; i < res.length; i++) {
|
|
|
- const element = res[i];
|
|
|
- element.serviceOutPutId = this.form.auth_id;
|
|
|
- }
|
|
|
- await this.generalDataReception(18122, res, 1)
|
|
|
- },
|
|
|
- restData () {
|
|
|
- this.getData()
|
|
|
}
|
|
|
}
|
|
|
}
|