ye
This commit is contained in:
parent
4f523974e4
commit
5c38208f01
@ -64,3 +64,7 @@ export function dictDataDetail(params: any) {
|
|||||||
export function getTaskApproveTypeList(params: any|undefined) {
|
export function getTaskApproveTypeList(params: any|undefined) {
|
||||||
return request.get({ url: '/setting.dict.dict_data/getTaskApproveTypeList', params })
|
return request.get({ url: '/setting.dict.dict_data/getTaskApproveTypeList', params })
|
||||||
}
|
}
|
||||||
|
// 入股任务类型
|
||||||
|
export function getShareholderMoneyTaskApproveTypeList() {
|
||||||
|
return request.get({ url: '/setting.dict.dict_data/getShareholderMoneyTaskApproveTypeList' })
|
||||||
|
}
|
||||||
|
@ -1,9 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="edit-popup">
|
<div class="edit-popup">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<popup
|
<popup
|
||||||
ref="popupRef"
|
ref="popupRef"
|
||||||
:title="popupTitle"
|
:title="popupTitle"
|
||||||
@ -20,8 +16,6 @@
|
|||||||
:rules="formRules"
|
:rules="formRules"
|
||||||
label-width="120px"
|
label-width="120px"
|
||||||
>
|
>
|
||||||
|
|
||||||
|
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="ID" prop="id">
|
<el-form-item label="ID" prop="id">
|
||||||
|
@ -110,6 +110,7 @@
|
|||||||
import { usePaging } from "@/hooks/usePaging";
|
import { usePaging } from "@/hooks/usePaging";
|
||||||
import { useDictData } from "@/hooks/useDictOptions";
|
import { useDictData } from "@/hooks/useDictOptions";
|
||||||
import { apiApproveLists } from "@/api/shareholdingReview";
|
import { apiApproveLists } from "@/api/shareholdingReview";
|
||||||
|
import {getShareholderMoneyTaskApproveTypeList} from "@/api/setting/dict";
|
||||||
import feedback from "@/utils/feedback";
|
import feedback from "@/utils/feedback";
|
||||||
import auditOtherPopup from "./components/audit_other.vue";
|
import auditOtherPopup from "./components/audit_other.vue";
|
||||||
import auditTownMarketPopup from "./components/audit_town_market.vue";
|
import auditTownMarketPopup from "./components/audit_town_market.vue";
|
||||||
@ -127,7 +128,10 @@
|
|||||||
check_status: "",
|
check_status: "",
|
||||||
type: "10",
|
type: "10",
|
||||||
});
|
});
|
||||||
|
getShareholderMoneyTaskApproveTypeList().then((res) => {
|
||||||
|
queryParams.type = res.join(",");
|
||||||
|
getLists();
|
||||||
|
});
|
||||||
const checkStatusList = ref([
|
const checkStatusList = ref([
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
@ -191,7 +195,6 @@
|
|||||||
// getTaskApproveTypeList().then((res) => {
|
// getTaskApproveTypeList().then((res) => {
|
||||||
// queryParams.type = res.join(",");
|
// queryParams.type = res.join(",");
|
||||||
// });
|
// });
|
||||||
getLists();
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user