| @@ -149,6 +149,23 @@ | |||||
| <van-row> | <van-row> | ||||
| <van-col span="24"><span>支付方式</span>{{ detail.paymentType }}</van-col> | <van-col span="24"><span>支付方式</span>{{ detail.paymentType }}</van-col> | ||||
| </van-row> | </van-row> | ||||
| <van-row> | |||||
| <van-col span="24"><span>支付说明</span></van-col> | |||||
| </van-row> | |||||
| <van-row> | |||||
| <van-col span="24"> | |||||
| <template v-if="detail.paymentTypeOriginal=='1'"> | |||||
| <span v-if="detail.projectNumberOriginal!=='8'">本合同签订之日起</span> | |||||
| <span v-if="detail.projectNumberOriginal=='8'">项目完成后</span> | |||||
| <span>{{detail.paymentComment}}日内,</span> | |||||
| <span v-if="detail.projectNumberOriginal!=='8'">乙方一次性将租赁费支付给甲方。</span> | |||||
| <span v-if="detail.projectNumberOriginal=='8'">甲方一次性将工程款支付给乙方。</span> | |||||
| </template> | |||||
| <template v-if="detail.paymentTypeOriginal!='1'"> | |||||
| {{detail.paymentCondition}} | |||||
| </template> | |||||
| </van-col> | |||||
| </van-row> | |||||
| <van-row> | <van-row> | ||||
| <van-col span="24"><span>授权情况</span>{{ detail.authorization }}</van-col> | <van-col span="24"><span>授权情况</span>{{ detail.authorization }}</van-col> | ||||
| </van-row> | </van-row> | ||||
| @@ -441,6 +458,7 @@ export default { | |||||
| } | } | ||||
| }) | }) | ||||
| this.getDicts("project_type").then(res => { | this.getDicts("project_type").then(res => { | ||||
| this.detail.projectNumberOriginal = response.data.projectNumber; | |||||
| this.detail.projectNumber = this.selectDictLabel(res.data,response.data.projectNumber); | this.detail.projectNumber = this.selectDictLabel(res.data,response.data.projectNumber); | ||||
| }); | }); | ||||
| // this.getDicts("sub_object_type").then(res => { | // this.getDicts("sub_object_type").then(res => { | ||||
| @@ -463,6 +481,7 @@ export default { | |||||
| this.detail.unit = this.selectDictLabel(res.data,response.data.unit); | this.detail.unit = this.selectDictLabel(res.data,response.data.unit); | ||||
| }); | }); | ||||
| this.getDicts("payment_type").then(res => { | this.getDicts("payment_type").then(res => { | ||||
| this.detail.paymentTypeOriginal = response.data.paymentType; | |||||
| this.detail.paymentType = this.selectDictLabel(res.data,response.data.paymentType); | this.detail.paymentType = this.selectDictLabel(res.data,response.data.paymentType); | ||||
| }); | }); | ||||
| for(let i of this.detail.subjectList){ | for(let i of this.detail.subjectList){ | ||||