|
@@ -7,8 +7,9 @@
|
|
|
<PublicPageTable :loading="loading" :table-cols="tableCols" :table-btns="authBtns" :data="tableData" @mounted="tableMountedHandler" @load="load" @handleEdit="handleEdit" @handleOther="handleOther" @handleRemove="handleRemove" />
|
|
|
</div>
|
|
|
<div class="accessPageTable_dialog">
|
|
|
- <PublicPageDialog :dialog-loading="dialogLoading" :dialog-title="tableTitle" dialogSize="630px" :dialog-drawer="flag" @handleClose="submitClickClose('ruleForm')" @handleSubmit="submitClickHandler">
|
|
|
- <PublicPageForm ref="ruleForm" :label-width="labelWidth" :form-data="tableForm" />
|
|
|
+ <PublicPageDialog :dialog-loading="dialogLoading" :dialog-title="tableTitle" :dialogSize="dialogSize" :dialog-drawer="flag" @handleClose="submitClickClose('ruleForm')" @handleSubmit="submitClickHandler">
|
|
|
+ <PublicPageForm v-if="dialogTabFlag" ref="ruleForm" :label-width="labelWidth" :form-data="tableForm" />
|
|
|
+ <Table :auth-id="233" :auth-query="tableRow" v-else />
|
|
|
</PublicPageDialog>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -20,13 +21,14 @@ import PublicPageDialog from '@/components/PublicPageDialog'
|
|
|
import PublicPageForm from './accessPageForm.vue'
|
|
|
import PublicPageTable from '@/components/SimpleTable'
|
|
|
import AuthButton from '@/components/AuthButton'
|
|
|
+import Table from '@/views/tablePage/index.vue'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
import { Query, newData, modifyData, moveData } from "@/api/webApi"
|
|
|
import { formatChange } from '@/utils/validate'
|
|
|
|
|
|
export default {
|
|
|
name: 'AccessPageTable',
|
|
|
- components: { PublicPageHeader, PublicPageDialog, PublicPageForm, PublicPageTable, AuthButton },
|
|
|
+ components: { PublicPageHeader, PublicPageDialog, PublicPageForm, PublicPageTable, AuthButton, Table },
|
|
|
props: {
|
|
|
msgContent: {
|
|
|
type: Object,
|
|
@@ -40,12 +42,17 @@ export default {
|
|
|
page: 0, //当前table页面
|
|
|
noMore: false, //当前table是否加载到最后开关
|
|
|
loading: false, //页面加载
|
|
|
+ ploading: false,
|
|
|
dialogLoading: false,
|
|
|
dialogFlag: false,
|
|
|
+ dialogTabFlag: false,
|
|
|
+ dialogSize: '630px',
|
|
|
+ tableRow: {},
|
|
|
pageTitle: '', //页面名称
|
|
|
tableCols: [], //表头数据
|
|
|
tableData: [], //表格数据
|
|
|
tableBtns: [], //表格按钮权限
|
|
|
+ paramsData: [], //参数设置表格
|
|
|
dataContent: {}, //表格查询数据
|
|
|
pageServiceId: null, //表格serviceid
|
|
|
formItem: [], //弹框表单渲染数据
|
|
@@ -197,9 +204,11 @@ export default {
|
|
|
const { openmode, pageroute } = this.pageAuthBtnAdd
|
|
|
if (!openmode) return
|
|
|
if (openmode != 2) this.autoBtnClick(openmode, pageroute)
|
|
|
- this.flag = true;
|
|
|
- this.tableType = "add";
|
|
|
- this.tableTitle = "新增";
|
|
|
+ this.flag = true
|
|
|
+ this.dialogTabFlag = true
|
|
|
+ this.tableType = "add"
|
|
|
+ this.tableTitle = "新增"
|
|
|
+ this.dialogSize = '630px'
|
|
|
this.tableForm = {
|
|
|
serviceid: this.msgContent['serviceid'] || '',
|
|
|
preconditions: '',
|
|
@@ -219,8 +228,10 @@ export default {
|
|
|
if (!openmode) return
|
|
|
if (openmode != 2) this.autoBtnClick(openmode, pageroute)
|
|
|
this.flag = true
|
|
|
+ this.dialogTabFlag = true
|
|
|
this.tableType = "edit"
|
|
|
this.tableTitle = "编辑"
|
|
|
+ this.dialogSize = '630px'
|
|
|
this.tableForm = _.cloneDeep(row)
|
|
|
},
|
|
|
//表格-其他类型按钮操作
|
|
@@ -228,6 +239,14 @@ export default {
|
|
|
const { openmode, pageroute, passparameters } = this.pageAuthBtnOther
|
|
|
if (!openmode) return
|
|
|
if (openmode != 2) this.autoBtnClick(openmode, pageroute, passparameters, row)
|
|
|
+ if (openmode == 4) {
|
|
|
+ const { algorithmlibraryid } = row
|
|
|
+ this.flag = true
|
|
|
+ this.dialogTabFlag = false
|
|
|
+ this.tableTitle = "参数设置"
|
|
|
+ this.dialogSize = '830px'
|
|
|
+ this.tableRow = { algorithmlibraryid }
|
|
|
+ }
|
|
|
},
|
|
|
//表格-删除
|
|
|
handleRemove (row) {
|
|
@@ -257,12 +276,18 @@ export default {
|
|
|
// 新增/编辑-取消
|
|
|
submitClickClose (formName) {
|
|
|
this.flag = false
|
|
|
- this.$refs[formName].restForm()
|
|
|
+ if (this.dialogTabFlag) {
|
|
|
+ this.$refs[formName].restForm()
|
|
|
+ }
|
|
|
},
|
|
|
// 新增/编辑-确认
|
|
|
submitClickHandler () {
|
|
|
- const flag = this.$refs["ruleForm"].submitClickHandler()
|
|
|
- if (flag) this.tableType == "add" ? this.generalDataReception(1, this.tableForm) : this.generalDataReception(2, this.tableForm, this.tableKey)
|
|
|
+ if (this.dialogTabFlag) {
|
|
|
+ const flag = this.$refs["ruleForm"].submitClickHandler()
|
|
|
+ if (flag) this.tableType == "add" ? this.generalDataReception(1, this.tableForm) : this.generalDataReception(2, this.tableForm, this.tableKey)
|
|
|
+ } else {
|
|
|
+ this.flag = false
|
|
|
+ }
|
|
|
},
|
|
|
//表格-增/删/改
|
|
|
async generalDataReception (event, data, key) {
|
|
@@ -305,6 +330,19 @@ export default {
|
|
|
this.tableForm = {}
|
|
|
}
|
|
|
},
|
|
|
+ async getParamsData (serviceid, datacontent) {
|
|
|
+ this.ploading = true
|
|
|
+ try {
|
|
|
+ datacontent = { filter: datacontent }
|
|
|
+ const { code, returnData } = await Query({ serviceid, datacontent, event: '0', page: 1, size: 9999 })
|
|
|
+ if (code && returnData?.length) {
|
|
|
+ this.paramsData = [...returnData]
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ this.$message.error(error)
|
|
|
+ }
|
|
|
+ this.ploading = false
|
|
|
+ },
|
|
|
tableMountedHandler (refName, ref) {
|
|
|
this.$refs[refName] = ref
|
|
|
},
|