|
|
|
|
@ -16,7 +16,7 @@
|
|
|
|
|
<g-panel-detail-item label="报名人" from="resident-info" beforeIcon="icon-bianji"
|
|
|
|
|
@clickItem="handleOpenPeopleModal" :value="orderDetail.applyUserName" />
|
|
|
|
|
|
|
|
|
|
<g-panel-detail-item label="参与统计" from="resident-info" beforeIcon="icon-bianji"
|
|
|
|
|
<g-panel-detail-item label="参与统计" v-if="orderDetail.status != 21" from="resident-info" beforeIcon="icon-bianji"
|
|
|
|
|
@clickItem="handleOpenstatisticModal" :value="joinCountList[joinVal].label" />
|
|
|
|
|
|
|
|
|
|
<view>
|
|
|
|
|
@ -230,7 +230,7 @@
|
|
|
|
|
<view class="g_flex_row_between"
|
|
|
|
|
style="padding-top: 0; padding-bottom: 0; padding-right: 32rpx; position: relative; margin-left: 20px; margin-bottom: 36rpx">
|
|
|
|
|
<view class="g_fs_16 g_c_3 g_flex_column_center">跟进记录</view>
|
|
|
|
|
<view @click="handleOpenRemarkModal">
|
|
|
|
|
<!-- <view @click="handleOpenRemarkModal">
|
|
|
|
|
<view class="g_flex_row_end g_pl_16 g_pr_16 g_pt_9 g_pb_9"
|
|
|
|
|
style="background-color: #f8f8f8; border-radius: 17px">
|
|
|
|
|
<view class="g_flex_row_end">
|
|
|
|
|
@ -240,7 +240,7 @@
|
|
|
|
|
<view class="g_fs_12 g_c_3 g_ml_8">写跟进</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
<g-panel-record :item="orderDetail.records" @clickInfo="goRecordInfo" />
|
|
|
|
|
</view>
|
|
|
|
|
@ -580,9 +580,26 @@
|
|
|
|
|
this.isCreator = uni.getStorageSync("IS_CREATOR") == 1 ? true : false;
|
|
|
|
|
this.getResident();
|
|
|
|
|
this.getPeople();
|
|
|
|
|
this.getDetail();
|
|
|
|
|
this.getDetail();
|
|
|
|
|
this.getImg();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
methods: {
|
|
|
|
|
getImg() {
|
|
|
|
|
let that = this;
|
|
|
|
|
that.G.Get(
|
|
|
|
|
that.api.order_imgList+'/'+that.oid, {
|
|
|
|
|
// oid: that.oid,
|
|
|
|
|
type:20,
|
|
|
|
|
},
|
|
|
|
|
(res) => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
that.orderDetail.imgList = res.data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ifZhedie() {
|
|
|
|
|
this.zhedie = false
|
|
|
|
|
},
|
|
|
|
|
|