feat:签署完成

This commit is contained in:
2025-08-28 20:19:37 +08:00
parent 596d63d68c
commit 28732b1b48
+5 -2
View File
@@ -6,7 +6,7 @@
<view class="top-info flex-r-lr"> <view class="top-info flex-r-lr">
<image src="@/static/new/he.png"></image> <image src="@/static/new/he.png"></image>
<view class="right-view"> <view class="right-view">
<text class="text-36 text-zu">消费型合伙人协议</text> <text class="text-36 text-zu">{{ obj.contractName }}</text>
<view class="bottom-panel"> <view class="bottom-panel">
<view class="flex-r-lr mt-24" v-for="(item, index) in dataList" :key="dataList.value"> <view class="flex-r-lr mt-24" v-for="(item, index) in dataList" :key="dataList.value">
<text class="text-fu text-24">{{ item.text }}</text> <text class="text-fu text-24">{{ item.text }}</text>
@@ -48,7 +48,7 @@ export default {
data() { data() {
return { return {
dataList: [ dataList: [
{ text: '合同状态', value: '' }, { text: '合同状态', value: '签约完成' },
{ text: '合同编号', value: '' }, { text: '合同编号', value: '' },
{ text: '发起方', value: '信任桥(深圳)网络科技有限公司' }, { text: '发起方', value: '信任桥(深圳)网络科技有限公司' },
{ text: '发起时间', value: '' }, { text: '发起时间', value: '' },
@@ -95,6 +95,9 @@ export default {
this.obj.details.startTime = func.formatDate(new Date(res.data[0].details.startTime), 2); this.obj.details.startTime = func.formatDate(new Date(res.data[0].details.startTime), 2);
this.obj.details.endTime = func.formatDate(new Date(res.data[0].details.endTime), 2); this.obj.details.endTime = func.formatDate(new Date(res.data[0].details.endTime), 2);
// this.dataList[2].value = this.obj.flowId; // this.dataList[2].value = this.obj.flowId;
this.dataList[0].value = this.obj.state ? '已签署' : '未签署';
this.dataList[1].value = this.obj.flowid;
this.dataList[3].value = this.obj.details.startTime; this.dataList[3].value = this.obj.details.startTime;
this.dataList[4].value = this.obj.details.endTime; this.dataList[4].value = this.obj.details.endTime;
this.bottomList[0].value = this.obj.signatureName; this.bottomList[0].value = this.obj.signatureName;