zsk 8 months ago
parent 6a2fc403bb
commit 0bc77fccfa

@ -15,6 +15,9 @@ let orderInfo = {
order_peopleList :"/yishoudan/user/getAgencyCorpUsers",// 报名人列表 order_peopleList :"/yishoudan/user/getAgencyCorpUsers",// 报名人列表
order_submitPeople :"/yishoudan/user/apply/order/updateApplyUser",// 报名人提交修改 order_submitPeople :"/yishoudan/user/apply/order/updateApplyUser",// 报名人提交修改
order_updateStatistic:"/yishoudan/user/apply/order/updateStatistic", //是否参与统计 order_updateStatistic:"/yishoudan/user/apply/order/updateStatistic", //是否参与统计
order_imgList:"/imgs/list",
order_submitFellow :"/yishoudan/user/updateInfo",// 老乡编辑提交 order_submitFellow :"/yishoudan/user/updateInfo",// 老乡编辑提交
order_submitTime :"/assistant/apply/order/changeTime",// 时间编辑提交 order_submitTime :"/assistant/apply/order/changeTime",// 时间编辑提交

@ -16,7 +16,7 @@
<g-panel-detail-item label="报名人" from="resident-info" beforeIcon="icon-bianji" <g-panel-detail-item label="报名人" from="resident-info" beforeIcon="icon-bianji"
@clickItem="handleOpenPeopleModal" :value="orderDetail.applyUserName" /> @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" /> @clickItem="handleOpenstatisticModal" :value="joinCountList[joinVal].label" />
<view> <view>
@ -230,7 +230,7 @@
<view class="g_flex_row_between" <view class="g_flex_row_between"
style="padding-top: 0; padding-bottom: 0; padding-right: 32rpx; position: relative; margin-left: 20px; margin-bottom: 36rpx"> 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 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" <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"> style="background-color: #f8f8f8; border-radius: 17px">
<view class="g_flex_row_end"> <view class="g_flex_row_end">
@ -240,7 +240,7 @@
<view class="g_fs_12 g_c_3 g_ml_8">写跟进</view> <view class="g_fs_12 g_c_3 g_ml_8">写跟进</view>
</view> </view>
</view> </view>
</view> </view> -->
</view> </view>
<g-panel-record :item="orderDetail.records" @clickInfo="goRecordInfo" /> <g-panel-record :item="orderDetail.records" @clickInfo="goRecordInfo" />
</view> </view>
@ -580,9 +580,26 @@
this.isCreator = uni.getStorageSync("IS_CREATOR") == 1 ? true : false; this.isCreator = uni.getStorageSync("IS_CREATOR") == 1 ? true : false;
this.getResident(); this.getResident();
this.getPeople(); 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() { ifZhedie() {
this.zhedie = false this.zhedie = false
}, },

Loading…
Cancel
Save