int
This commit is contained in:
parent
67e99ecdb6
commit
63e4c81151
@ -18,19 +18,11 @@
|
|||||||
placeholder="请输入加盟申请用户电话"
|
placeholder="请输入加盟申请用户电话"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="加盟申请用户职位">
|
<el-form-item label="加盟申请职位">
|
||||||
<el-select
|
<el-input
|
||||||
v-model="params.join_apply_user_position"
|
v-model="params.join_apply_user_position"
|
||||||
clearable
|
placeholder="请输入加盟申请职位"
|
||||||
placeholder="请选择"
|
></el-input>
|
||||||
>
|
|
||||||
<el-option
|
|
||||||
v-for="item in join_apply_user_position"
|
|
||||||
:key="item.dictionary_guid"
|
|
||||||
:label="item.dictionary_name"
|
|
||||||
:value="item.dictionary_value"
|
|
||||||
></el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="加盟申请受理状态">
|
<el-form-item label="加盟申请受理状态">
|
||||||
<el-select
|
<el-select
|
||||||
@ -88,12 +80,7 @@
|
|||||||
:params="params"
|
:params="params"
|
||||||
:request="params => getJoinApplyList(params)"
|
:request="params => getJoinApplyList(params)"
|
||||||
>
|
>
|
||||||
<template #join_apply_user_position="scope">
|
|
||||||
<dict-tag
|
|
||||||
:options="join_apply_user_position"
|
|
||||||
:value="scope.row.join_apply_user_position"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template #join_apply_status="scope">
|
<template #join_apply_status="scope">
|
||||||
<dict-tag
|
<dict-tag
|
||||||
@ -299,16 +286,7 @@ function handleDetail(row) {
|
|||||||
DetailJoinApplyDialogRow.value = row;
|
DetailJoinApplyDialogRow.value = row;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 字典获取
|
|
||||||
const join_apply_user_position = ref([]);
|
|
||||||
async function get_join_apply_user_position() {
|
|
||||||
await getDictionary({ dictionary_value: 'join_apply_user_position' }).then(
|
|
||||||
res => {
|
|
||||||
join_apply_user_position.value = res;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
get_join_apply_user_position();
|
|
||||||
// 字典获取
|
// 字典获取
|
||||||
const processing_state = ref([]);
|
const processing_state = ref([]);
|
||||||
async function get_processing_state() {
|
async function get_processing_state() {
|
||||||
|
Loading…
Reference in New Issue
Block a user