|
|
@@ -62,10 +62,13 @@
|
|
|
@refresh="handleBtnAction" />
|
|
|
<Modify :selectedData="addModelData"
|
|
|
@refresh="handleBtnAction" />
|
|
|
- <ModifyChild />
|
|
|
- <Detail />
|
|
|
- <Cancel />
|
|
|
- <Credit />
|
|
|
+ <ModifyChild @refresh="handleBtnAction"
|
|
|
+ :selectedData="moreModelData" />
|
|
|
+ <Detail :selectedData="moreModelData" />
|
|
|
+ <Cancel @refresh="handleBtnAction"
|
|
|
+ :selectedData="moreModelData" />
|
|
|
+ <Credit @refresh="handleBtnAction"
|
|
|
+ :selectedData="moreModelData" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -106,7 +109,8 @@ export default defineComponent({
|
|
|
|
|
|
// 新增弹窗
|
|
|
const { selectedData: addModelData, openAction } = handleModalData<ErmcpTaAccountEx>();
|
|
|
-
|
|
|
+ // 修改 重置密码、详情等弹窗
|
|
|
+ const { selectedData: moreModelData, openAction: moreOptenAction } = handleModalData<ErmcpTaAccountEx>();
|
|
|
initData(() => {
|
|
|
queryTable();
|
|
|
});
|
|
|
@@ -117,6 +121,8 @@ export default defineComponent({
|
|
|
return {
|
|
|
addModelData,
|
|
|
openAction,
|
|
|
+ moreModelData,
|
|
|
+ moreOptenAction,
|
|
|
loading,
|
|
|
search,
|
|
|
tableList,
|