feat : 需求汇总列表新增当前审批节点字段,阶段变更新增项目终止字段
This commit is contained in:
@@ -8,19 +8,20 @@
|
||||
<el-form-item label="抄送人员" label-width="110">
|
||||
<Ttsup :modelValue="chooseUserInfo()" @clickCopyUser="chooseUser"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="变更状态" label-width="110" prop="changeState">
|
||||
<el-select v-model="formData.changeState" placeholder="请选择变更状态" filterable clearable style="width: 300px">
|
||||
<el-form-item label="阶段变更" label-width="110" prop="changeState">
|
||||
<el-select v-model="formData.changeState" placeholder="请选择阶段变更" filterable clearable style="width: 300px">
|
||||
<el-option v-for="item in cacheStore.getDict('fee_stage')" :key="item.value" :label="item.label"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="是否项目终止" label-width="110" prop="isStop">-->
|
||||
<!-- <el-radio-group v-model="formData.isStop" >-->
|
||||
<!-- <el-radio label="1">是</el-radio>-->
|
||||
<!-- <el-radio label="0">否</el-radio>-->
|
||||
<!-- </el-radio-group>-->
|
||||
<!-- </el-form-item>-->
|
||||
<el-form-item label="状态变更" label-width="110" prop="stateChange">
|
||||
<el-select v-model="formData.stateChange" placeholder="请选择状态变更" filterable clearable style="width: 300px">
|
||||
<el-option v-for="item in cacheStore.getDict('state_change')" :key="item.value" :label="item.label"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<user-picker :multiple="true" ref="userPicker" title="请选择抄送人员" v-model:value="userList"
|
||||
@ok="ccPersonPickerOkOrCancel" @cancelOrClear="ccPersonPickerOkOrCancel"/>
|
||||
@@ -86,6 +87,7 @@ const name = ref(router.currentRoute.value.name)
|
||||
const loading = ref(false)
|
||||
const formData = ref({
|
||||
changeState:'0',
|
||||
stateChange:'',
|
||||
isStop:'0'
|
||||
})
|
||||
const file = ref({})
|
||||
@@ -456,7 +458,8 @@ const handleSubmit = async () => {
|
||||
// singleFile: formData.value.singleFile,
|
||||
projectId: route.query.projectId,
|
||||
userIds: userIds,
|
||||
changeState:formData.value.changeState
|
||||
changeState:formData.value.changeState,
|
||||
stateChange:formData.value.stateChange
|
||||
}
|
||||
if (!attachment.value.isHaveOneFile) {
|
||||
attachment.value.validate()
|
||||
@@ -514,7 +517,8 @@ const handleResubmit = () => {
|
||||
// singleFile: attachment.value.singleFile,
|
||||
projectId: route.query.projectId,
|
||||
userIds: userIds,
|
||||
changeState:formData.value.changeState
|
||||
changeState:formData.value.changeState,
|
||||
stateChange:formData.value.stateChange
|
||||
}
|
||||
// console.log('重新提交params', params)
|
||||
resubmitPhaseForm(params).then(res => {
|
||||
|
||||
Reference in New Issue
Block a user