|
|
@@ -116,7 +116,6 @@ const tableData = ref([]);//列表数据
|
|
|
const paymentFormRef = ref<FormInstance>()
|
|
|
const fromSize = ref<ComponentSize>('large')//表单大小
|
|
|
const paynemtAdddialogVisible = ref(false)//弹窗
|
|
|
-const dictLists = ref<{ [key: string]: any[] }>({});//字典集合
|
|
|
const dialogTitle = ref('支付码配置')//弹窗title
|
|
|
const dialogType = ref('add')//弹窗title
|
|
|
const companyList = ref();
|
|
|
@@ -286,19 +285,6 @@ const paymentDel = (id: string) => {
|
|
|
})
|
|
|
|
|
|
}
|
|
|
-//字典信息处理
|
|
|
-const dictType = (type: string) => {
|
|
|
- api.toolApi.dictType({ dictCode: type }).then((res: any) => {
|
|
|
- if (res.code == '200') {
|
|
|
- dictLists.value[type + 'List'] = res.data.map((item: any) => {
|
|
|
- return {
|
|
|
- value: item.value,
|
|
|
- label: item.label
|
|
|
- };
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
-}
|
|
|
const close = () => {
|
|
|
paymentform.companyId = "";
|
|
|
paymentform.companyName = "";
|