|
|
@ -238,7 +238,8 @@ const appKey = ref<string>("") |
|
|
*/ |
|
|
*/ |
|
|
const editAppCont = (val:string) => { |
|
|
const editAppCont = (val:string) => { |
|
|
emits('getRongQiAttr') |
|
|
emits('getRongQiAttr') |
|
|
appKey.value = val.toString(); |
|
|
appKey.value = val.signCodeStr.toString(); |
|
|
|
|
|
pickAppInfo.value = val |
|
|
appPageShow.value = true; |
|
|
appPageShow.value = true; |
|
|
} |
|
|
} |
|
|
/** |
|
|
/** |
|
|
@ -310,7 +311,7 @@ const lookAppList = (val:any) => { |
|
|
<el-button size="small" circle class="button" :icon="View" @click="lookAppList(item)"></el-button> |
|
|
<el-button size="small" circle class="button" :icon="View" @click="lookAppList(item)"></el-button> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8" class="but_centent"> |
|
|
<el-col :span="8" class="but_centent"> |
|
|
<el-button size="small" circle class="button" :icon="Edit" @click="editAppCont(item.signCodeStr)"></el-button> |
|
|
<el-button size="small" circle class="button" :icon="Edit" @click="editAppCont(item)"></el-button> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8" class="but_centent"> |
|
|
<el-col :span="8" class="but_centent"> |
|
|
<el-button size="small" circle class="button" :icon="Delete" @click="delFormApp(item.idStr)"></el-button> |
|
|
<el-button size="small" circle class="button" :icon="Delete" @click="delFormApp(item.idStr)"></el-button> |
|
|
@ -338,7 +339,7 @@ const lookAppList = (val:any) => { |
|
|
|
|
|
|
|
|
<LowCodeFormPage v-if="addFormIsShow" :drawer-with="props.drawerWith" v-model:form-key="formId" @refreshPage="refreshPage" /> |
|
|
<LowCodeFormPage v-if="addFormIsShow" :drawer-with="props.drawerWith" v-model:form-key="formId" @refreshPage="refreshPage" /> |
|
|
|
|
|
|
|
|
<DesignAPPpage v-model:is-show="appPageShow" v-model:form-key="appKey" :group-key="props.groupId" :drawer-with="props.drawerWith" @refreshPage="getFormAppList" /> |
|
|
<DesignAPPpage v-model:is-show="appPageShow" v-model:form-key="appKey" :group-key="props.groupId" :drawer-with="props.drawerWith" :pick-app-info="pickAppInfo" @refreshPage="getFormAppList" @accessapp="lookAppList" /> |
|
|
<RunApplication v-model:run-is-open="runIsOpen" :pick-app-info="pickAppInfo" :drawer-with="props.drawerWith" @refreshPage="getFormAppList"/> |
|
|
<RunApplication v-model:run-is-open="runIsOpen" :pick-app-info="pickAppInfo" :drawer-with="props.drawerWith" @refreshPage="getFormAppList"/> |
|
|
<el-drawer |
|
|
<el-drawer |
|
|
v-model="lookPageIsShow" |
|
|
v-model="lookPageIsShow" |
|
|
|