123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- <template>
- <view>
- <!-- 胶囊 -->
- <mvBar :mysNavConfig="mysNavConfig"></mvBar>
- <view :style="{marginTop:navH}"></view>
- <view class="basicInfo">
- <image :src="mainImg" style="width: 150rpx;height: 150rpx;" mode="">
- </image>
- <view class="basicInfo_txt">
- <p style="margin-bottom: 10rpx;font-size: 31rpx; font-weight: bold;">
- {{selection.selection_name}}
- </p>
- <p style="font-size: 27rpx;">售价:¥{{selection.YounggeeProduct[0].product_price}}
- 样叽高佣:{{selection.YounggeeProduct[0].exclusive_commission}}%</p>
- <p style="font-size: 27rpx;" v-if="selection.task_mode === 1">
- 额外悬赏:¥{{selection.RewardStrategy[0].per_reward}}</p>
- </view>
- </view>
- <view class="address">
- <view>
- <image class="address_icon" :src="picture.icon_loc" mode="">
- </image>
- </view>
- <view style="width: 70%;">
- <view style="display: flex;">
- <p class='ipon' style="padding-right: 100rpx;">{{address.receiver_name}}</p>
- <p class='ipon'>{{address.phone_number}}</p>
- </view>
- <p class='ipon'>{{address.full_detail_addr}}</p>
- </view>
- <view class="address_edit" @click="editAddress()">
- <image :src="picture.icon_edit" mode="">
- </image>
- </view>
- </view>
- <view class="keyInfo">
- <p style="margin-bottom: 30rpx;font-size: 36rpx; font-weight: bold;">任务要求</p>
- <!-- <p>内容形式:{{selection.show_content_type}}</p> -->
- <p>带货链接:{{selection.product_url}}
- <image :src="picture.icon_copy" mode="" class="copy-img" @click="handleCopy('123')" />
- </p>
- <p>领样要求:</p>
- <!-- 具体领样品要求(粉丝数量) -->
- <view class="markcontent">
- <view class="" v-for="item in selection.FreeStrategy">
- <p style=" margin-top: 20rpx; margin-bottom: 20rpx; font-size: 26rpx;">
- 粉丝量{{getFansLabel(item.fans_num)}},近30天橱窗销量≥{{item.sale_num}}单</p>
- </view>
- </view>
- </view>
- <view class="account" @click="editAccount()">
- <view class="account_txt">
- <image :src="selection.PlatformInfo.platform_icon" mode=""></image>
- <span>{{account.platform_nickname}}</span>
- </view>
- <view class="account_fans">
- <p style="padding-right: 20rpx;color:#A8A8A8;">粉丝数</p>
- <p>{{account.show_fans_count}}</p>
- </view>
- <view class="account_btn">
- <image :src="picture.togoimg" mode="" style="width: 16rpx;height: 30rpx;"></image>
- </view>
- </view>
- <view class="block"></view>
- <view class="submit">
- <button type="default" class="submit_btn" @click="submit()"> 确认报名并添加橱窗</button>
- </view>
- </view>
- </template>
- <script>
- import region from '@/components/pca-code.json';
- import mvBar from "@/components/mys_navBar/mysNavBar";
- import {
- fansview
- } from '@/components/utils.js';
- export default {
- components: {
- mvBar
- },
- data() {
- return {
- navH: getApp().globalData.navHeight,
- picture: getApp().globalData.picture,
- mysNavConfig: {
- isHome: false,
- /* 固定导航 */
- navFixed: true,
- /* 标题 (屏幕中心居中 两边图标中心居中使用slot center1) */
- navTitle: {
- text: "信息确认",
- color: "",
- fontSize: "32rpx", // px upx rpx
- fontWeight: "", // 100 - 700
- },
- btnType: "type2",
- onLeftClick: '',
- /* type2 按钮 */
- type2Config: {
- // 左图标
- leftPath: "https://horastar.obs.cn-east-3.myhuaweicloud.com/talent/png2.png",
- // 右图标
- rightPath: "https://horastar.obs.cn-east-3.myhuaweicloud.com/talent/png4.png",
- // 圆角
- radius: "40rpx",
- },
- },
- options: [{
- value: '1',
- label: '所有人均可领取'
- },
- {
- value: '2',
- label: '1w下'
- },
- {
- value: '3',
- label: '1w-10w'
- },
- {
- value: '4',
- label: '10w-100w'
- },
- {
- value: '5',
- label: '100w-500w'
- },
- {
- value: '6',
- label: '500w-1000w'
- },
- {
- value: '7',
- label: '1000w以上'
- },
- ],
- selection: {},
- youngTeamId: "",
- youngLeadTeamId: "",
- mainImg: "https://horastar.obs.cn-east-3.myhuaweicloud.com/backstage_upload/bb531ede-28b5-49a0-8431-a1608fd35890.png",
- account_id: -1,
- address_id: -1,
- address: null,
- project: null,
- account: null,
- strategy: null,
- thirdPlatform: [],
- }
- },
- onShow() {
- // 根据address_id查询address
- this.getDefaultAddress();
- // 查询account
- this.getAccount();
- },
- onLoad(options) {
- this.textObj = options.textObj.replace(/""/g, "");
- this.textObj = JSON.parse(decodeURIComponent(this.textObj))
- this.selection = this.textObj.selection
- console.log("this.selection------>", this.selection)
- this.youngTeamId = this.textObj.youngTeamId
- this.youngLeadTeamId = this.textObj.youngLeadTeamId
- for (let i = 0; i < this.selection.YounggeeProductPhoto.length; ++i) {
- console.log("intoforloop---->", this.selection.YounggeeProductPhoto[i])
- if (this.selection.YounggeeProductPhoto[i].symbol === 1) {
- this.mainImg = this.selection.YounggeeProductPhoto[i].photo_url
- }
- }
- console.log("this.mainIma---->", this.mainImg)
- if (this.youngLeadTeamId === "") {
- this.getLeadYoungTeamId()
- }
- },
- methods: {
- getFansLabel(fansNum) {
- const option = this.options.find(o => o.value === fansNum.toString());
- return option ? option.label : fansNum;
- },
- handleCopy(content) {
- wx.setClipboardData({
- data: content,
- success: function(res) {
- console.log("复制成功");
- }
- });
- },
- getLeadYoungTeamId() {
- // 调用后端接口,创建young之团,若young之团存在则返回teamid,否则创建young之团并返回id
- return this.$https.post('/youngee/c/t/p/add-young-team', {
- selection_id: this.selection.selection_id,
- project_type: 2,
- })
- .then(res => {
- console.log(res)
- this.youngLeadTeamId = res.data.data;
- })
- },
- getAccount() {
- this.$https.get('/youngee/c/t/g/get-talent-account')
- .then(res => {
- console.log(res)
- console.log(res.data.data)
- if (res.data.code !== -3) {
- let account = res.data.data
- while (this.selection == null) {} // 这句很危险
- for (var i = 0; i < account.length; i++) {
- if (this.selection.platform == account[i].platform_id) {
- this.account = account[i]
- }
- }
- this.account.show_fans_count = fansview(this.account.fans_count)
- }
- })
- },
- getDefaultAddress() {
- this.$https.get('/youngee/c/t/g/get-talent-default-address').then(res => {
- console.log(res.data.data)
- this.address = res.data.data;
- let a = this.address.region_code.toString().slice(0, 2)
- let b = this.address.region_code.toString().slice(0, 4)
- let c = 0
- for (var i = 0; i < region.length; i++) {
- if (region[i].code == a) {
- a = region[i].name
- for (var j = 0; j < region[i].children.length; j++) {
- if (region[i].children[j].code == b) {
- b = region[i].children[j].name
- for (var o = 0; o < region[i].children[j].children.length; o++) {
- if (region[i].children[j].children[o].code == this.address
- .region_code) {
- c = region[i].children[j].children[o].name
- }
- }
- }
- }
- }
- }
- this.address.full_detail_addr = a + b + c + this.address.detail_addr
- })
- },
- editAddress() {
- uni.navigateTo({
- url: '/page_mycenter/myinformation/addlocation?address_id=' + this.address.address_id +
- '&ismodify=1'
- });
- },
- editAccount() {
- uni.navigateTo({
- url: '/page_mycenter/myinformation/bindaccount?platform_id=' + this.account.platform_id +
- '&account_id=' +
- this.account.account_id
- });
- },
- debugSubmit() {
- uni.navigateTo({
- url: '/page_tasksquare/wholetask/success'
- });
- },
-
- // 提交确认报名
- async submit() {
- console.log("提交报名")
- // 直接报名
- console.log("********", this.selection.product_id)
- this.$https.post('/youngee/c/t/p/sign-up-sec-task', {
- address_id: this.address.address_id,
- selection_id: this.selection.selection_id,
- lead_team_id: this.youngLeadTeamId,
- team_id: this.youngTeamId,
- product_id: this.selection.product_id
- }).then(res => {
- if (res.data.code == 0) {
- var data = {
- task_id: res.data.data.task_id
- };
- data = JSON.stringify(data)
- uni.navigateTo({
- url: '/page_selectionsquare/selectiondetail/success?textObj=' +
- encodeURIComponent(
- data)
- });
- } else {
- uni.showModal({
- content: '网络繁忙,请小主稍后再试~',
- });
- }
- })
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- text {
- font-size: 32rpx;
- }
- p {
- font-size: 32rpx;
- }
- .basicInfo {
- display: flex;
- margin: 0 40rpx;
- padding: 30rpx 0;
- .basicInfo_txt {
- margin-left: 40rpx;
- padding-top: 20rpx;
- }
- }
- .address {
- display: flex;
- margin: 30rpx 40rpx 0;
- padding: 30rpx 0;
- justify-content: space-around;
- .address_icon {
- vertical-align: middle;
- width: 50rpx;
- height: 50rpx;
- display: inline-block;
- padding-right: 30rpx;
- }
- .address_edit {}
- .address_edit image {
- vertical-align: middle;
- width: 50rpx;
- height: 50rpx;
- display: inline-block;
- padding-right: 14rpx;
- }
- .ipon {
- color: #333333;
- font-size: 30rpx;
- margin-bottom: 10rpx;
- }
- }
- .keyInfo {
- margin: 30rpx 40rpx;
- }
- .keyInfo span {
- display: flex;
- align-items: center;
- margin: 10rpx 0;
- }
- .keyInfo p {
- margin: 25rpx 0;
- }
- .account {
- display: flex;
- align-items: center;
- width: 690rpx;
- padding: 24rpx 0;
- margin: 0 auto;
- .account_txt {
- display: inline-block;
- padding: 0 0 0 1%;
- width: 400rpx;
- }
- .account_txt span {
- color: #333333;
- font-weight: 550;
- text-indent: 2em;
- font-size: 32rpx;
- }
- .account_txt image {
- vertical-align: middle;
- width: 50rpx;
- height: 50rpx;
- display: inline-block;
- padding-right: 14rpx;
- }
- .account_fans {
- display: flex;
- width: 250rpx;
- }
- .account_fans p {
- display: inline-block;
- color: #333333;
- font-weight: 550;
- }
- .account_btn {}
- }
- .block {
- width: 100%;
- height: 100rpx;
- margin-top: 5%;
- }
- .submit {
- box-shadow: 0rpx 5rpx 40rpx #ccc;
- width: 100%;
- position: fixed;
- bottom: 0rpx;
- display: flex;
- height: 90rpx;
- padding-top: 2%;
- background-color: #FFFFFF;
- .submit_btn {
- background-color: #FCCF41;
- border-radius: 20rpx;
- font-size: 30rpx;
- line-height: 220%;
- letter-spacing: 5rpx;
- height: 80%;
- }
- }
- </style>
|