Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -18,9 +18,10 @@ export const requirementReported = (data) => {
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
export const getProcessInfo = () => {
|
//获取需求上报 流程信息
|
||||||
|
export const getProcessInfo = (specialFund) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/workflow/mosr/requirement/collect/process',
|
url: `/workflow/mosr/requirement/collect/process/${specialFund}`,
|
||||||
method: "get"
|
method: "get"
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -10,6 +10,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
|
import {getResearchUser} from "@/api/expense-manage";
|
||||||
|
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const searchConfig = reactive([
|
const searchConfig = reactive([
|
||||||
{
|
{
|
||||||
@@ -47,6 +49,13 @@ const searchConfig = reactive([
|
|||||||
])
|
])
|
||||||
const tableConfig = reactive({
|
const tableConfig = reactive({
|
||||||
columns: [
|
columns: [
|
||||||
|
{
|
||||||
|
prop: 'index',
|
||||||
|
type: 'index',
|
||||||
|
label: '序号',
|
||||||
|
align: 'center',
|
||||||
|
width: '80',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'projectName',
|
prop: 'projectName',
|
||||||
label: '项目名称',
|
label: '项目名称',
|
||||||
@@ -55,7 +64,10 @@ const tableConfig = reactive({
|
|||||||
{
|
{
|
||||||
prop: 'researchPersonnel',
|
prop: 'researchPersonnel',
|
||||||
label: '研发人员',
|
label: '研发人员',
|
||||||
align: 'center'
|
align: 'center',
|
||||||
|
currentRender:({row})=>{
|
||||||
|
return <span>{getResearchName(row.researchPersonnel)}</span>
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'wagesPayable',
|
prop: 'wagesPayable',
|
||||||
@@ -99,6 +111,21 @@ const tableConfig = reactive({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
const tableIns = ref()
|
const tableIns = ref()
|
||||||
|
const researchOptions = ref([])
|
||||||
|
const getResearchOptions = async () => {
|
||||||
|
const res = await getResearchUser()
|
||||||
|
researchOptions.value = res.data
|
||||||
|
}
|
||||||
|
const getResearchName=(id)=>{
|
||||||
|
if(!id)return;
|
||||||
|
let label=''
|
||||||
|
researchOptions.value.forEach(item=>{
|
||||||
|
if(item.value==id){
|
||||||
|
label=item.label
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return label
|
||||||
|
}
|
||||||
const search = (val) => {
|
const search = (val) => {
|
||||||
tableConfig.params = {
|
tableConfig.params = {
|
||||||
allocationId:route.query.id,
|
allocationId:route.query.id,
|
||||||
@@ -106,6 +133,7 @@ const search = (val) => {
|
|||||||
}
|
}
|
||||||
tableIns.value.refresh()
|
tableIns.value.refresh()
|
||||||
}
|
}
|
||||||
|
getResearchOptions()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|||||||
@@ -10,12 +10,12 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="金额(元)">
|
<el-form-item label="金额(元)">
|
||||||
<span>{{ formData.fundAmount }}</span>
|
<span>{{ toThousands(formData.fundAmount) }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="剩余金额(元)">
|
<el-form-item label="剩余金额(元)">
|
||||||
<span>{{ formData.residualAmount }}</span>
|
<span>{{ toThousands(formData.residualAmount) }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<baseTitle title="介绍"></baseTitle>
|
<baseTitle title="介绍"></baseTitle>
|
||||||
@@ -72,16 +72,18 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-form>
|
</el-form>
|
||||||
<opinion v-if="data.taskId" :formData="data.formData" :taskId="data.taskId" v-model:value="formData.auditOpinion"></opinion>
|
<opinion v-if="data.taskId" :formData="data.formData" :taskId="data.taskId"
|
||||||
|
v-model:value="formData.auditOpinion"></opinion>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
import OperationRender from '@/views/workflow/common/OperationRender.vue'
|
import OperationRender from '@/views/workflow/common/OperationRender.vue'
|
||||||
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue'
|
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue'
|
||||||
import {downloadFile} from "@/api/project-demand";
|
import {downloadFile} from "@/api/project-demand";
|
||||||
|
|
||||||
const emit = defineEmits(['getInfo',"update:formData"])
|
const emit = defineEmits(['getInfo', "update:formData"])
|
||||||
const form = ref()
|
const form = ref()
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
@@ -122,7 +124,10 @@ const projectTable = reactive({
|
|||||||
{
|
{
|
||||||
prop: 'specialFundAmount',
|
prop: 'specialFundAmount',
|
||||||
label: '项目金额',
|
label: '项目金额',
|
||||||
align: 'center'
|
align: 'center',
|
||||||
|
currentRender:({row})=>{
|
||||||
|
return <span>{toThousands(row.specialFundAmount)}</span>
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'startTime',
|
prop: 'startTime',
|
||||||
@@ -201,7 +206,7 @@ watch(() => props.showTable, (newVal) => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
:deep(.el-table--fit ){
|
:deep(.el-table--fit ) {
|
||||||
height: 300px!important;
|
height: 300px !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="专项资金" prop="specialFund" v-if="localFormData.specialFund">
|
<el-form-item label="专项资金" prop="specialFund" v-if="localFormData.isSpecialFund">
|
||||||
<span>{{localFormData.specialFund }}</span>
|
<span>{{localFormData.specialFund }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -105,13 +105,13 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
<el-form-item label="经济概算(元)" prop="economicEstimate">
|
<el-form-item label="经济概算(元)" prop="economicEstimate">
|
||||||
<span>{{ localFormData.economicEstimate }}</span>
|
<span>{{toThousands( localFormData.economicEstimate )}}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
<el-form-item label="其中申请公司总部科技创新专项资金(元)" prop="specialFundAmount"
|
<el-form-item label="其中申请公司总部科技创新专项资金(元)" prop="specialFundAmount"
|
||||||
v-if="localFormData.specialFundAmount">
|
v-if="localFormData.isSpecialFund">
|
||||||
<span>{{ localFormData.specialFundAmount }}</span>
|
<span>{{ toThousands(localFormData.specialFundAmount) }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
@@ -163,6 +163,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
import {downloadFile, deleteFile} from "@/api/project-demand";
|
import {downloadFile, deleteFile} from "@/api/project-demand";
|
||||||
import OperationRender from '@/views/workflow/common/OperationRender.vue'
|
import OperationRender from '@/views/workflow/common/OperationRender.vue'
|
||||||
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue'
|
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue'
|
||||||
|
|||||||
8
src/utils/changePrice.js
Normal file
8
src/utils/changePrice.js
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export const toThousands = (num) => {
|
||||||
|
if(num==undefined||num==null)return '--';
|
||||||
|
const options = {
|
||||||
|
style: 'currency',
|
||||||
|
currency: 'CNY',
|
||||||
|
};
|
||||||
|
return (num).toLocaleString('zh-CN', options)
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
||||||
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const searchConfig = reactive([
|
const searchConfig = reactive([
|
||||||
@@ -134,7 +134,19 @@ const tableConfig = reactive({
|
|||||||
currentRender:({row})=>{
|
currentRender:({row})=>{
|
||||||
return <span>{toThousands(row.afterTax)}</span>
|
return <span>{toThousands(row.afterTax)}</span>
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
prop: 'source',
|
||||||
|
label: '来源',
|
||||||
|
align: 'center',
|
||||||
|
currentRender: ({row, index}) => {
|
||||||
|
if (row.source&&row.source !== null&&row.source!==undefined) {
|
||||||
|
return (<Tag dictType={'ledger_source'} value={row.source}/>)
|
||||||
|
} else {
|
||||||
|
return '--'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
],
|
],
|
||||||
api: '/workflow/mosr/expense/ledger',
|
api: '/workflow/mosr/expense/ledger',
|
||||||
params: {}
|
params: {}
|
||||||
@@ -143,14 +155,6 @@ const search = (val) => {
|
|||||||
tableConfig.params = {...val}
|
tableConfig.params = {...val}
|
||||||
tableIns.value.refresh()
|
tableIns.value.refresh()
|
||||||
}
|
}
|
||||||
const toThousands=(num)=> {
|
|
||||||
if(num==undefined||num==null)return '--';
|
|
||||||
const options = {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CNY',
|
|
||||||
};
|
|
||||||
return (num).toLocaleString('zh-CN', options)
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|||||||
@@ -48,6 +48,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
import OperationRender from '@/views/workflow/common/OperationRender.vue'
|
import OperationRender from '@/views/workflow/common/OperationRender.vue'
|
||||||
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue'
|
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue'
|
||||||
import {ElNotification} from "element-plus";
|
import {ElNotification} from "element-plus";
|
||||||
@@ -104,12 +105,10 @@ const tableConfig = reactive({
|
|||||||
{
|
{
|
||||||
prop: 'afterTax',
|
prop: 'afterTax',
|
||||||
label: '分摊金额',
|
label: '分摊金额',
|
||||||
align: 'center'
|
align: 'center',
|
||||||
},
|
currentRender:({row})=>{
|
||||||
{
|
return <span>{toThousands(row.specialFundAmount)}</span>
|
||||||
prop: 'digest',
|
}
|
||||||
label: '摘要',
|
|
||||||
align: 'center'
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
api:'/workflow/mosr/cost/allocation/collect',
|
api:'/workflow/mosr/cost/allocation/collect',
|
||||||
@@ -117,6 +116,7 @@ const tableConfig = reactive({
|
|||||||
allocationId:route.query.id
|
allocationId:route.query.id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const getDetail = async () => {
|
const getDetail = async () => {
|
||||||
const id = route.query.id
|
const id = route.query.id
|
||||||
shareProcessViewer.value = false
|
shareProcessViewer.value = false
|
||||||
|
|||||||
@@ -16,12 +16,12 @@
|
|||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="6" v-if="route.query.id&&formData.specialFund">
|
<el-col :span="6" v-if="route.query.id&&formData.isSpecialFund">
|
||||||
<el-form-item label="专项资金" prop="specialFundId">
|
<el-form-item label="专项资金" prop="specialFundId">
|
||||||
<span>{{ formData.specialFund }}</span>
|
<span>{{ formData.specialFund }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="6" v-if="!route.query.id&&formData.isSpecialFund">
|
<el-col :span="6" v-if="!route.query.id">
|
||||||
<el-form-item label="专项资金" prop="specialFundId">
|
<el-form-item label="专项资金" prop="specialFundId">
|
||||||
<el-select v-model="formData.specialFundId" placeholder="请选择专项资金" clearable filterable>
|
<el-select v-model="formData.specialFundId" placeholder="请选择专项资金" clearable filterable>
|
||||||
<el-option
|
<el-option
|
||||||
@@ -213,13 +213,8 @@
|
|||||||
<el-input-number v-model="formData.economicEstimate" placeholder="请输入经济概算" :controls="false"/>
|
<el-input-number v-model="formData.economicEstimate" placeholder="请输入经济概算" :controls="false"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12" v-if="formData.isSpecialFund!==false">
|
||||||
<el-form-item label="其中申请公司总部科技创新专项资金(元)" prop="specialFundAmount"
|
<el-form-item label="其中申请公司总部科技创新专项资金(元)" prop="specialFundAmount">
|
||||||
v-if="!route.query.id&&formData.isSpecialFund">
|
|
||||||
<el-input-number v-model="formData.specialFundAmount" placeholder="请输入专项资金" :controls="false"/>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="其中申请公司总部科技创新专项资金(元)" prop="specialFundAmount"
|
|
||||||
v-if="route.query.id">
|
|
||||||
<el-input-number v-model="formData.specialFundAmount" placeholder="请输入专项资金" :controls="false"/>
|
<el-input-number v-model="formData.specialFundAmount" placeholder="请输入专项资金" :controls="false"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -486,7 +481,7 @@ const init = async () => {
|
|||||||
specialFundOption.value = resFund.data
|
specialFundOption.value = resFund.data
|
||||||
const res = await getSubCompOpt()
|
const res = await getSubCompOpt()
|
||||||
companyOption.value = res.data
|
companyOption.value = res.data
|
||||||
getProcessInfo().then(res => {
|
getProcessInfo(formData.value.isSpecialFund).then(res => {
|
||||||
if (res.code === 1000) {
|
if (res.code === 1000) {
|
||||||
let data = res.data
|
let data = res.data
|
||||||
deploymentId.value = data.deploymentId
|
deploymentId.value = data.deploymentId
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
||||||
import {reactive, shallowRef} from "vue";
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const shortcuts = [
|
const shortcuts = [
|
||||||
@@ -265,14 +265,7 @@ const tableConfig = reactive({
|
|||||||
api: '/workflow/mosr/project/filing',
|
api: '/workflow/mosr/project/filing',
|
||||||
params: {},
|
params: {},
|
||||||
})
|
})
|
||||||
const toThousands=(num)=> {
|
|
||||||
if(num==undefined||num==null)return '--';
|
|
||||||
const options = {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CNY',
|
|
||||||
};
|
|
||||||
return (num).toLocaleString('zh-CN', options)
|
|
||||||
}
|
|
||||||
const search = (val) => {
|
const search = (val) => {
|
||||||
let obj = {...val}
|
let obj = {...val}
|
||||||
if (obj.dateValue) {
|
if (obj.dateValue) {
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<template>
|
||||||
|
<el-button type="primary" link >
|
||||||
|
{{ modelValue || '请选择抄送人员' }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, watch, watchEffect } from 'vue';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
modelValue: {
|
||||||
|
type: String,
|
||||||
|
default: ''
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// const emit = defineEmits('update: modelValue')
|
||||||
|
|
||||||
|
const localText = ref('')
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
||||||
import {reactive, shallowRef} from "vue";
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const shortcuts = [
|
const shortcuts = [
|
||||||
@@ -301,14 +301,7 @@ const tableConfig = reactive({
|
|||||||
{name: '生成分摊报表', key: '_export', color: '#DED0B2', auth: ''}
|
{name: '生成分摊报表', key: '_export', color: '#DED0B2', auth: ''}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
const toThousands=(num)=> {
|
|
||||||
if(num==undefined||num==null)return '--';
|
|
||||||
const options = {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CNY',
|
|
||||||
};
|
|
||||||
return (num).toLocaleString('zh-CN', options)
|
|
||||||
}
|
|
||||||
const search = (val) => {
|
const search = (val) => {
|
||||||
let obj = {...val}
|
let obj = {...val}
|
||||||
if(obj.dateValue) {
|
if(obj.dateValue) {
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="apply-block">
|
<div class="apply-block">
|
||||||
|
<div>
|
||||||
|
抄送人员:
|
||||||
|
<Ttsup :modelValue="chooseUserInfo()" @click="chooseUser"/>
|
||||||
|
</div>
|
||||||
|
<user-picker :multiple="true" ref="userPicker" title="请选择抄送人员" v-model:value="userList" @ok="selected"/>
|
||||||
<AttachmentUpload ref="attachment" label="阶段变更附件" :showTable="showTable" :otherFileList="otherFileList"
|
<AttachmentUpload ref="attachment" label="阶段变更附件" :showTable="showTable" :otherFileList="otherFileList"
|
||||||
@getAttachment="getAttachment"
|
@getAttachment="getAttachment"
|
||||||
@getOtherFile="getOtherFile" :showFileList="true" :formData="formData" :preview="name === 'Phase/edit'"/>
|
@getOtherFile="getOtherFile" :showFileList="true" :formData="formData"
|
||||||
|
:preview="name === 'Phase/edit'"/>
|
||||||
<div class="approval-record">
|
<div class="approval-record">
|
||||||
<baseTitle title="流程"></baseTitle>
|
<baseTitle title="流程"></baseTitle>
|
||||||
<process-diagram-viewer mode="view" v-if="processDiagramViewer"/>
|
<process-diagram-viewer mode="view" v-if="processDiagramViewer"/>
|
||||||
@@ -16,7 +22,9 @@
|
|||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue';
|
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue';
|
||||||
import {getPhaseProcess,submitPhaseChange,getPhaseForm,resubmitPhaseForm} from "@/api/project-manage";
|
import UserPicker from "@/views/workflow/process/common/UserPicker.vue";
|
||||||
|
import Ttsup from './components/ToolToShowUserPicker.vue'
|
||||||
|
import {getPhaseProcess, submitPhaseChange, getPhaseForm, resubmitPhaseForm} from "@/api/project-manage";
|
||||||
import {ElNotification} from "element-plus";
|
import {ElNotification} from "element-plus";
|
||||||
import {useProcessStore} from '@/stores/processStore.js';
|
import {useProcessStore} from '@/stores/processStore.js';
|
||||||
import {useTagsView} from '@/stores/tagsview.js'
|
import {useTagsView} from '@/stores/tagsview.js'
|
||||||
@@ -25,6 +33,7 @@ const tagsViewStore = useTagsView()
|
|||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const attachment = ref()
|
const attachment = ref()
|
||||||
|
const userPicker = ref()
|
||||||
const name = ref(router.currentRoute.value.name)
|
const name = ref(router.currentRoute.value.name)
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
const formData = ref({})
|
const formData = ref({})
|
||||||
@@ -34,6 +43,7 @@ const showTable = ref(true)
|
|||||||
const otherFileList = ref([])
|
const otherFileList = ref([])
|
||||||
const processInstanceData = ref()
|
const processInstanceData = ref()
|
||||||
const processDiagramViewer = ref(true)
|
const processDiagramViewer = ref(true)
|
||||||
|
const userList = ref([])
|
||||||
const processStore = useProcessStore()
|
const processStore = useProcessStore()
|
||||||
const compositeParam = (item) => {
|
const compositeParam = (item) => {
|
||||||
let tag = ''
|
let tag = ''
|
||||||
@@ -70,39 +80,131 @@ const getFileParam = (item) => {
|
|||||||
tag: item.tag
|
tag: item.tag
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const handleSubmit =async () => {
|
|
||||||
let files = []
|
const chooseUser = () => {
|
||||||
let singleFile = {}
|
userPicker.value.showUserPicker()
|
||||||
let fileArray
|
}
|
||||||
|
const chooseUserInfo = () => {
|
||||||
|
if (userList.value.length > 0){
|
||||||
|
return userList.value.map(item => {
|
||||||
|
return item.name
|
||||||
|
}).join(',')
|
||||||
|
}else {
|
||||||
|
return "请选择抄送人员"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const selected = (select) => {
|
||||||
|
let userInfoList = []
|
||||||
|
for (let val of select) {
|
||||||
|
let userInfo = {
|
||||||
|
id: val.id,
|
||||||
|
name: val.name,
|
||||||
|
avatar: val.avatar,
|
||||||
|
}
|
||||||
|
userInfoList.push(userInfo)
|
||||||
|
}
|
||||||
|
userList.value = userInfoList
|
||||||
|
}
|
||||||
|
const handleSubmit = async () => {
|
||||||
|
let files = []
|
||||||
|
let singleFile = {}
|
||||||
|
let fileArray
|
||||||
|
if (file.value.fileId !== undefined) {
|
||||||
|
singleFile = {
|
||||||
|
fileId: file.value.fileId
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fileArray = otherFileList.value
|
||||||
|
fileArray.forEach(item => {
|
||||||
|
files.push(getFileParam(item))
|
||||||
|
})
|
||||||
|
let userIds = []
|
||||||
|
if (userList.value.length > 0){
|
||||||
|
userIds = userList.value.map(item => {
|
||||||
|
return item.id
|
||||||
|
})
|
||||||
|
}
|
||||||
|
let params = {
|
||||||
|
deploymentId: deploymentId.value,
|
||||||
|
requirementId: route.query.id,
|
||||||
|
fileList: files,
|
||||||
|
singleFile: singleFile,
|
||||||
|
projectId: route.query.projectId,
|
||||||
|
userIds: userIds
|
||||||
|
}
|
||||||
|
if (JSON.stringify(singleFile) === "{}") {
|
||||||
|
attachment.value.validate()
|
||||||
|
ElNotification({
|
||||||
|
title: '提示',
|
||||||
|
message: '请上传附件',
|
||||||
|
type: 'error'
|
||||||
|
})
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
attachment.value.clearValidate()
|
||||||
|
}
|
||||||
|
console.log('params-提交', params,userList.value)
|
||||||
|
// let res = await submitPhaseChange(params)
|
||||||
|
// ElNotification({
|
||||||
|
// title: '提示',
|
||||||
|
// message: res.msg,
|
||||||
|
// type: res.code === 1000 ? 'success' : 'error'
|
||||||
|
// })
|
||||||
|
// if (res.code === 1000) {
|
||||||
|
// tagsViewStore.delVisitedViews(router.currentRoute.value.path)
|
||||||
|
// await router.push({
|
||||||
|
// name: 'Implementation'
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
const handleResubmit = (instance) => {
|
||||||
|
let singleFile = {}
|
||||||
|
let otherFiles = []
|
||||||
|
let fileArray
|
||||||
|
if (attachment.value.singleFile !== null && name.value === 'Phase/edit') {
|
||||||
|
singleFile = {
|
||||||
|
fileId: attachment.value.singleFile.fileId
|
||||||
|
}
|
||||||
|
fileArray = attachment.value.allFileList
|
||||||
|
} else {
|
||||||
if (file.value.fileId !== undefined) {
|
if (file.value.fileId !== undefined) {
|
||||||
singleFile = {
|
singleFile = {
|
||||||
fileId: file.value.fileId
|
fileId: file.value.fileId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fileArray = otherFileList.value
|
fileArray = otherFileList.value
|
||||||
fileArray.forEach(item => {
|
}
|
||||||
files.push(getFileParam(item))
|
fileArray.forEach(item => {
|
||||||
|
otherFiles.push(getFileParam(item))
|
||||||
|
})
|
||||||
|
let userIds = []
|
||||||
|
if (userList.value.length > 0){
|
||||||
|
userIds = userList.value.map(item => {
|
||||||
|
return item.id
|
||||||
})
|
})
|
||||||
let params = {
|
}
|
||||||
deploymentId: deploymentId.value,
|
//todo requirementId
|
||||||
requirementId: route.query.id,
|
let params = {
|
||||||
fileList: files,
|
deploymentId: deploymentId.value,
|
||||||
singleFile: singleFile,
|
requirementId: route.query.id,
|
||||||
projectId: route.query.projectId,
|
fileList: otherFiles,
|
||||||
}
|
singleFile: singleFile,
|
||||||
if (JSON.stringify(singleFile) === "{}") {
|
projectId: route.query.projectId,
|
||||||
attachment.value.validate()
|
userIds: userIds
|
||||||
ElNotification({
|
}
|
||||||
title: '提示',
|
if (JSON.stringify(singleFile) === "{}") {
|
||||||
message: '请上传附件',
|
attachment.value.validate()
|
||||||
type: 'error'
|
ElNotification({
|
||||||
})
|
title: '提示',
|
||||||
return;
|
message: '请上传附件',
|
||||||
}else {
|
type: 'error'
|
||||||
attachment.value.clearValidate()
|
})
|
||||||
}
|
return;
|
||||||
console.log('params-提交', params)
|
} else {
|
||||||
let res = await submitPhaseChange(params)
|
attachment.value.clearValidate()
|
||||||
|
}
|
||||||
|
console.log('重新提交params', params)
|
||||||
|
resubmitPhaseForm(params).then(res => {
|
||||||
ElNotification({
|
ElNotification({
|
||||||
title: '提示',
|
title: '提示',
|
||||||
message: res.msg,
|
message: res.msg,
|
||||||
@@ -110,67 +212,14 @@ const handleSubmit =async () => {
|
|||||||
})
|
})
|
||||||
if (res.code === 1000) {
|
if (res.code === 1000) {
|
||||||
tagsViewStore.delVisitedViews(router.currentRoute.value.path)
|
tagsViewStore.delVisitedViews(router.currentRoute.value.path)
|
||||||
await router.push({
|
router.push({
|
||||||
name: 'Implementation'
|
name: 'Implementation'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
const handleResubmit = (instance) => {
|
|
||||||
let singleFile = {}
|
|
||||||
let otherFiles = []
|
|
||||||
let fileArray
|
|
||||||
if (attachment.value.singleFile!==null&&name.value === 'Phase/edit') {
|
|
||||||
singleFile = {
|
|
||||||
fileId: attachment.value.singleFile.fileId
|
|
||||||
}
|
|
||||||
fileArray = attachment.value.allFileList
|
|
||||||
} else {
|
|
||||||
if (file.value.fileId !== undefined) {
|
|
||||||
singleFile = {
|
|
||||||
fileId: file.value.fileId
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fileArray = otherFileList.value
|
|
||||||
}
|
|
||||||
fileArray.forEach(item => {
|
|
||||||
otherFiles.push(getFileParam(item))
|
|
||||||
})
|
|
||||||
//todo requirementId
|
|
||||||
let params = {
|
|
||||||
deploymentId: deploymentId.value,
|
|
||||||
requirementId: route.query.id,
|
|
||||||
fileList: otherFiles,
|
|
||||||
singleFile: singleFile,
|
|
||||||
projectId: route.query.projectId,
|
|
||||||
}
|
|
||||||
if (JSON.stringify(singleFile) === "{}") {
|
|
||||||
attachment.value.validate()
|
|
||||||
ElNotification({
|
|
||||||
title: '提示',
|
|
||||||
message: '请上传附件',
|
|
||||||
type: 'error'
|
|
||||||
})
|
|
||||||
return;
|
|
||||||
}else {
|
|
||||||
attachment.value.clearValidate()
|
|
||||||
}
|
|
||||||
console.log('重新提交params', params)
|
|
||||||
resubmitPhaseForm(params).then(res => {
|
|
||||||
ElNotification({
|
|
||||||
title: '提示',
|
|
||||||
message: res.msg,
|
|
||||||
type: res.code === 1000 ? 'success' : 'error'
|
|
||||||
})
|
|
||||||
if (res.code === 1000) {
|
|
||||||
tagsViewStore.delVisitedViews(router.currentRoute.value.path)
|
|
||||||
router.push({
|
|
||||||
name: 'Implementation'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
const init = async () => {
|
const init = async () => {
|
||||||
const {msg, code,data} = await getPhaseProcess()
|
const {msg, code, data} = await getPhaseProcess()
|
||||||
processDiagramViewer.value = false
|
processDiagramViewer.value = false
|
||||||
if (code === 1000) {
|
if (code === 1000) {
|
||||||
deploymentId.value = data.deploymentId
|
deploymentId.value = data.deploymentId
|
||||||
@@ -184,11 +233,11 @@ const init = async () => {
|
|||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
processDiagramViewer.value = true
|
processDiagramViewer.value = true
|
||||||
})
|
})
|
||||||
}else {
|
} else {
|
||||||
ElNotification({
|
ElNotification({
|
||||||
title: '提示',
|
title: '提示',
|
||||||
message: msg,
|
message: msg,
|
||||||
type:'error'
|
type: 'error'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -201,21 +250,21 @@ const getDetailInfo = async () => {
|
|||||||
})
|
})
|
||||||
if (res.code === 1000) {
|
if (res.code === 1000) {
|
||||||
formData.value = res.data
|
formData.value = res.data
|
||||||
loading.value=false
|
loading.value = false
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await init()
|
await init()
|
||||||
if (name.value === 'Phase/edit'){
|
if (name.value === 'Phase/edit') {
|
||||||
loading.value=true
|
loading.value = true
|
||||||
await getDetailInfo()
|
await getDetailInfo()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.apply-block{
|
.apply-block {
|
||||||
margin: 15px 0;
|
margin: 15px 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<script setup lang="jsx">
|
<script setup lang="jsx">
|
||||||
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
||||||
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const shortcuts = [
|
const shortcuts = [
|
||||||
{
|
{
|
||||||
@@ -264,14 +264,7 @@ const tableConfig = reactive({
|
|||||||
api: '/workflow/mosr/project/approval',
|
api: '/workflow/mosr/project/approval',
|
||||||
params: {},
|
params: {},
|
||||||
})
|
})
|
||||||
const toThousands=(num)=> {
|
|
||||||
if(num==undefined||num==null)return '--';
|
|
||||||
const options = {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CNY',
|
|
||||||
};
|
|
||||||
return (num).toLocaleString('zh-CN', options)
|
|
||||||
}
|
|
||||||
const search = (val) => {
|
const search = (val) => {
|
||||||
let obj = {...val}
|
let obj = {...val}
|
||||||
if(obj.dateValue) {
|
if(obj.dateValue) {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
|
||||||
import { ElNotification} from "element-plus";
|
import { ElNotification} from "element-plus";
|
||||||
import {deleteFund} from "@/api/special-fund";
|
import {deleteFund} from "@/api/special-fund";
|
||||||
|
import {toThousands} from '@/utils/changePrice.js'
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const searchConfig = reactive([
|
const searchConfig = reactive([
|
||||||
{
|
{
|
||||||
@@ -159,14 +159,6 @@ const tableConfig = reactive({
|
|||||||
]
|
]
|
||||||
})
|
})
|
||||||
const tableIns = ref()
|
const tableIns = ref()
|
||||||
const toThousands=(num)=> {
|
|
||||||
if(num==undefined||num==null)return '--';
|
|
||||||
const options = {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CNY',
|
|
||||||
};
|
|
||||||
return (num).toLocaleString('zh-CN', options)
|
|
||||||
}
|
|
||||||
|
|
||||||
const search = (val) => {
|
const search = (val) => {
|
||||||
tableConfig.params = {...val}
|
tableConfig.params = {...val}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import {fileURLToPath, URL} from 'node:url'
|
import { fileURLToPath, URL } from 'node:url'
|
||||||
import {defineConfig} from 'vite'
|
import { defineConfig } from 'vite'
|
||||||
import AutoImport from 'unplugin-auto-import/vite'
|
import AutoImport from 'unplugin-auto-import/vite'
|
||||||
import Components from 'unplugin-vue-components/vite'
|
import Components from 'unplugin-vue-components/vite'
|
||||||
import {ElementPlusResolver} from 'unplugin-vue-components/resolvers'
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
||||||
import Icons from 'unplugin-icons/vite'
|
import Icons from 'unplugin-icons/vite'
|
||||||
import IconsResolver from 'unplugin-icons/resolver'
|
import IconsResolver from 'unplugin-icons/resolver'
|
||||||
import vue from '@vitejs/plugin-vue'
|
import vue from '@vitejs/plugin-vue'
|
||||||
@@ -17,7 +17,7 @@ export default defineConfig({
|
|||||||
vueJsx(),
|
vueJsx(),
|
||||||
AutoImport({
|
AutoImport({
|
||||||
//自动导入vue相关函数
|
//自动导入vue相关函数
|
||||||
imports: ['vue', 'vue-router'],
|
imports: ['vue','vue-router'],
|
||||||
resolvers: [
|
resolvers: [
|
||||||
ElementPlusResolver(),
|
ElementPlusResolver(),
|
||||||
//自动导入图标组件
|
//自动导入图标组件
|
||||||
@@ -69,8 +69,8 @@ export default defineConfig({
|
|||||||
open: true,
|
open: true,
|
||||||
proxy: {
|
proxy: {
|
||||||
// '/api/workflow': {
|
// '/api/workflow': {
|
||||||
// target: 'http://frp.feashow.cn:31800/',
|
// // target: 'http://frp.feashow.cn:31800/',
|
||||||
// // target: 'http://clay.frp.feashow.cn/',
|
// target: 'http://clay.frp.feashow.cn/',
|
||||||
// // target: 'http://192.168.31.175:8000',
|
// // target: 'http://192.168.31.175:8000',
|
||||||
// changeOrigin: true,
|
// changeOrigin: true,
|
||||||
// rewrite: (path) => path.replace(/^\/api/, '')
|
// rewrite: (path) => path.replace(/^\/api/, '')
|
||||||
@@ -80,19 +80,19 @@ export default defineConfig({
|
|||||||
// target: 'http://clay.frp.feashow.cn/',
|
// target: 'http://clay.frp.feashow.cn/',
|
||||||
// // target: 'http://192.168.31.175:8000',
|
// // target: 'http://192.168.31.175:8000',
|
||||||
// changeOrigin: true,
|
// changeOrigin: true,
|
||||||
// rewrite: (path) => path.replace(/^\/summary/, '')
|
// rewrite: (path) => path.replace(/^\/api/, '')
|
||||||
// },
|
// },
|
||||||
'/api': {
|
'/api': {
|
||||||
target: 'http://mosr.feashow.cn',
|
// target: 'http://mosr.feashow.cn/',
|
||||||
// target: 'http://clay.frp.feashow.cn/',
|
target: 'http://10.7.127.57:8000',
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
// rewrite: (path) => path.replace(/^\/api/, '')
|
rewrite: (path) => path.replace(/^\/api/, '')
|
||||||
},
|
},
|
||||||
// '/summary/notice-ws': {
|
'/api/notice-ws': {
|
||||||
// target: 'ws://mosr.feashow.cn/summary/notice-ws',
|
target: 'ws://mosr.feashow.cn/api/notice-ws',
|
||||||
// ws: true,
|
ws: true,
|
||||||
// changeOrigin: true,
|
changeOrigin: true,
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user