sectaskdetail.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  1. <template>
  2. <view>
  3. <!-- 胶囊 -->
  4. <mvBar :mysNavConfig="mysNavConfig"></mvBar>
  5. <view :style="{marginTop:navH}"></view>
  6. <view v-if="!loading">
  7. <!-- 任务状态 -->
  8. <view style="padding-bottom: 30rpx;margin: 0 30rpx">
  9. <view style="display: flex;justify-content: center;font-size: 44rpx;padding-bottom: 20rpx;">
  10. <p>{{msg1}}</p>
  11. <view class="upload-btn" v-if="isShowUpload" @click="toUpload()" key="0">
  12. <image src="../../static/img/icon-upload.png" style="height: 40rpx;width: 40rpx;"></image>
  13. <p style="font-size: 28rpx;">快速上传</p>
  14. </view>
  15. </view>
  16. <view style="display: flex;justify-content: center;font-size: 24rpx;color: #999999;text-align:center">
  17. <p>{{msg2}}</p>
  18. </view>
  19. </view>
  20. <view class="address">
  21. <view class="address_icon">
  22. <image style="width: 50rpx;height: 50rpx;" :src="picture.icon_loc" mode="">
  23. </image>
  24. </view>
  25. <view style="width: 70%;">
  26. <view style="display: flex;">
  27. <p class='ipon' style="padding-right: 100rpx;">{{address.receiver_name}}</p>
  28. <p class='ipon'>{{address.phone_number}}</p>
  29. </view>
  30. <p class='ipon'>{{address.full_detail_addr}}</p>
  31. </view>
  32. <view class="address_edit" @click="editAddress()" v-if="task.task_stage < 4">
  33. <image :src="picture.icon_edit" mode="">
  34. </image>
  35. </view>
  36. </view>
  37. <view class="basicInfo">
  38. <view class="tpc-txt1">
  39. <image :src="product.PhotoUrl" style="width: 150rpx;height: 150rpx;" mode="">
  40. </image>
  41. <view class="basicInfo_txt">
  42. <p style="font-size: 30rpx;">{{project.selection_name}}</p>
  43. <p>售价:¥{{project.show_estimated_cost}} &nbsp;&nbsp;&nbsp;&nbsp;
  44. 佣金:{{project.commission_rate}}%</p>
  45. <p v-if="project.task_mode === 1">额外悬赏:¥{{project.show_task_reward}}</p>
  46. </view>
  47. </view>
  48. <view class="tpc-txt2" @click="toTaskDeatail()">
  49. <p>查看</p>
  50. <image class="tpc-icon" :src="picture.icon_right"></image>
  51. </view>
  52. </view>
  53. <view class="pipline" v-if="task.task_mode == 1 && task.sample_mode == 1">
  54. <image :src="picture.icon_mianfeichunyong"></image>
  55. </view>
  56. <view class="pipline" v-if="task.task_mode == 2 && task.sample_mode == 1">
  57. <image :src="picture.icon_mianfeixuanshang"></image>
  58. </view>
  59. <view class="pipline" v-if="task.task_mode == 1 && task.sample_mode == 2">
  60. <image :src="picture.icon_dianfuchunyong"></image>
  61. </view>
  62. <view class="pipline" v-if="task.task_mode == 2 && task.sample_mode == 2">
  63. <image :src="picture.icon_dianfuxuanshang"></image>
  64. </view>
  65. <view class="pipline" v-if="task.task_mode == 1 && task.sample_mode == 3">
  66. <image :src="picture.icon_wuyangchunyong"></image>
  67. </view>
  68. <view class="pipline" v-if="task.task_mode == 2 && task.sample_mode == 3">
  69. <image :src="picture.icon_wuyangxuanshang"></image>
  70. </view>
  71. <view class="task-progress">
  72. <view class="task-progress-card"
  73. v-bind:style="task.task_stage == 3 || task.task_stage == 5 || task.task_stage == 6 ? 'background-color: #f2d241' : ''">
  74. <view class="tpc-txt1">
  75. <p>报名信息</p>
  76. </view>
  77. <view class="tpc-txt2" @click="toApplyinfo()">
  78. <p>查看</p>
  79. <image class="tpc-icon" :src="picture.icon_right"></image>
  80. </view>
  81. </view>
  82. <view class="task-progress-card" v-if="task.task_stage >= 7"
  83. v-bind:style="task.task_stage == 7 ? 'background-color: #f2d241' : ''">
  84. <view class="tpc-txt1">
  85. <p>物流信息</p>
  86. </view>
  87. <view class="tpc-txt2" @click="toLogisticsinfo()">
  88. <p>查看</p>
  89. <image class="tpc-icon" :src="picture.icon_right"></image>
  90. </view>
  91. </view>
  92. <view class="task-progress-card" v-if="task.task_stage >= 8"
  93. v-bind:style="task.task_stage == 8 ? 'background-color: #f2d241' : ''">
  94. <view class="tpc-txt1">
  95. <p>上传作业</p>
  96. </view>
  97. <view class="tpc-txt2" @click="toUpload()" v-if="task.task_stage == 8">
  98. <p style="color: red;">待添加</p>
  99. <image class="tpc-icon" :src="picture.icon_right"></image>
  100. </view>
  101. <view class="tpc-txt2" @click="toAssignmentRecord()" v-if="task.task_stage > 8">
  102. <p>查看</p>
  103. <image class="tpc-icon" :src="picture.icon_right"></image>
  104. </view>
  105. </view>
  106. <view class="task-progress-card" v-if="task.task_stage === 9 || task.task_stage === 10"
  107. style="background-color: #f2d241">
  108. <view class="tpc-txt1" v-if="task.task_stage === 9">
  109. <p>待结算</p>
  110. </view>
  111. <view class="tpc-txt1" v-if="task.task_stage === 10">
  112. <p>已结束</p>
  113. </view>
  114. <view class="tpc-txt2" v-if="withdrawStatus == 1">
  115. <!-- <p>前往提现</p>
  116. <image class="tpc-icon" :src="picture.icon_right"></image> -->
  117. </view>
  118. <view class="tpc-txt2" @click="toWithdraw()" v-if="withdrawStatus == 2">
  119. <p>前往提现</p>
  120. <image class="tpc-icon" :src="picture.icon_right"></image>
  121. </view>
  122. <view class="tpc-txt2" v-if="withdrawStatus == 3">
  123. <p>提现中</p>
  124. <image class="tpc-icon" :src="picture.icon_right"></image>
  125. </view>
  126. <view class="tpc-txt2" v-if="withdrawStatus == 4">
  127. <p>已提现</p>
  128. <image class="tpc-icon" :src="picture.icon_right"></image>
  129. </view>
  130. </view>
  131. <view class="task-progress-info">
  132. <view style="padding: 10rpx 0;">
  133. <p>任务ID:{{task.task_id}}
  134. <image :src="picture.icon_copy" mode="" class="copy-img"
  135. @click="handleCopy(task.task_id)" />
  136. </p>
  137. </view>
  138. <view style="padding: 10rpx 0;">
  139. <p>报名时间:{{task.create_date}}</p>
  140. </view>
  141. <view v-if="task.task_stage > 1 && task.task_stage != 3" style="padding: 10rpx 0;">
  142. <p>确认合作:{{task.select_date}}</p>
  143. </view>
  144. <view v-for="(item,index) in taskLogs" style="padding: 10rpx 0;">
  145. <p>{{item.content}}:{{item.log_at}}</p>
  146. </view>
  147. </view>
  148. </view>
  149. <view class="block"></view>
  150. <view class="submit" v-if="task.task_stage === 10 && withdrawStatus == 2">
  151. <button type="default" class="submit_btn" @click="toWithdraw()">
  152. 前往提现</button>
  153. </view>
  154. </view>
  155. </view>
  156. </template>
  157. <script>
  158. import region from '@/components/pca-code.json';
  159. import mvBar from "@/components/mys_navBar/mysNavBar";
  160. import {
  161. fansview,
  162. money
  163. } from '@/components/utils.js';
  164. export default {
  165. components: {
  166. mvBar
  167. },
  168. data() {
  169. return {
  170. navH: getApp().globalData.navHeight,
  171. picture: getApp().globalData.picture,
  172. mysNavConfig: {
  173. isHome: false,
  174. /* 固定导航 */
  175. navFixed: true,
  176. /* 标题 (屏幕中心居中 两边图标中心居中使用slot center1) */
  177. navTitle: {
  178. text: "带货任务详情",
  179. color: "",
  180. fontSize: "32rpx", // px upx rpx
  181. fontWeight: "", // 100 - 700
  182. },
  183. btnType: "type2",
  184. onLeftClick: '',
  185. /* type2 按钮 */
  186. type2Config: {
  187. // 左图标
  188. leftPath: "https://horastar.obs.cn-east-3.myhuaweicloud.com/talent/png2.png",
  189. // 右图标
  190. rightPath: "https://horastar.obs.cn-east-3.myhuaweicloud.com/talent/png4.png",
  191. // 圆角
  192. radius: "40rpx",
  193. },
  194. },
  195. infoMsg1: [
  196. "等待企业确认合作",
  197. "等待企业确认合作",
  198. "等待企业确认合作",
  199. "恭喜任务申请成功!",
  200. "任务申请失败",
  201. "等待发货中",
  202. "商家已发货",
  203. "等待上传作业",
  204. "待结算",
  205. "已结案",
  206. ],
  207. infoMsg2: [
  208. "商家将在申请截止后5天内审核完毕",
  209. "商家将在申请截止后5天内审核完毕",
  210. "商家将在申请截止后5天内审核完毕",
  211. "请仔细查看任务要求和任务详情,开始执行任务吧!",
  212. "未达到领样标准,请小主尝试申请其他任务吧",
  213. "发货后可在任务进度中查看物流单号",
  214. "请在任务进度中查看物流单号",
  215. "请仔细查看任务要求,根据要求完成作业,截止时间前上传作业提交后可领取相应的悬赏及返现",
  216. "作业提交成功,请等待商家结算。",
  217. "本任务已结案,可前往任务大厅查看报名其他任务。",
  218. ],
  219. task_type_info: ["实体商品寄拍", "虚拟产品测评", "线下探店打卡"],
  220. isTimeOut: false,
  221. isNotShowSubmit: true,
  222. isShowUpload: false,
  223. loading: true,
  224. timeLeft: "",
  225. msg1: "",
  226. msg2: "",
  227. taskId: '',
  228. task: {},
  229. address: {},
  230. project: {},
  231. product: {},
  232. account: {},
  233. strategy: {},
  234. taskLogs: [],
  235. withdrawStatus: 1,
  236. }
  237. },
  238. async onShow() {
  239. this.loading = true;
  240. uni.showLoading({
  241. title: '加载中'
  242. });
  243. await this.getTaskInfo();
  244. await this.getTaskLogs();
  245. this.loading = false;
  246. uni.hideLoading();
  247. },
  248. onLoad(options) {
  249. this.taskId = options.taskId
  250. },
  251. methods: {
  252. handleCopy(text) {
  253. wx.setClipboardData({
  254. data: text.toString(),
  255. success: function(res) {
  256. console.log("复制成功");
  257. }
  258. });
  259. },
  260. getTaskInfo() {
  261. return this.$https.get('/youngee/c/t/g/get-sec-task-detail' +
  262. "?" +
  263. "task_id" +
  264. "=" +
  265. this.taskId
  266. ).then(res => {
  267. console.log("get-sec-task-detail--res--->",res)
  268. if (res.data.code != 0) {
  269. return
  270. }
  271. const data = res.data.data
  272. this.task = data.sec_task_info
  273. this.withdrawStatus = data.withdraw_status
  274. // 地址解析
  275. this.address = JSON.parse(this.task.talent_post_addr_snap);
  276. let a = this.address.region_code.toString().slice(0, 2)
  277. let b = this.address.region_code.toString().slice(0, 4)
  278. let c = 0
  279. for (var i = 0; i < region.length; i++) {
  280. if (region[i].code == a) {
  281. a = region[i].name
  282. for (var j = 0; j < region[i].children.length; j++) {
  283. if (region[i].children[j].code == b) {
  284. b = region[i].children[j].name
  285. for (var o = 0; o < region[i].children[j].children.length; o++) {
  286. if (region[i].children[j].children[o].code == this.address
  287. .region_code) {
  288. c = region[i].children[j].children[o].name
  289. }
  290. }
  291. }
  292. }
  293. }
  294. }
  295. this.address.full_detail_addr = a + b + c + this.address.detail_addr
  296. // 账号信息
  297. this.account = JSON.parse(this.task.talent_platform_info_snap);
  298. this.account.show_fans_count = fansview(this.account.fans_count)
  299. // 选品项目信息
  300. this.project = data.selection_detail
  301. this.project.Product = JSON.parse(this.project.product_snap);
  302. this.project.Product.showProductPrice = money(this.project.Product.ProductPrice)
  303. this.project.show_estimated_cost = money(this.project.Product.ProductPrice)
  304. this.project.project_form = this.project.Product.ProductType === 14 ? 3 : 1
  305. if (this.project.product_photo_snap != '') {
  306. let ProductPhoto = JSON.parse(this.project.product_photo_snap);
  307. for (let j = 0; j < ProductPhoto.length; ++j) {
  308. if (ProductPhoto[j].Symbol == 1) {
  309. this.product = ProductPhoto[j]
  310. }
  311. }
  312. }
  313. this.project.show_task_reward = money(this.project.task_reward)
  314. // this.project.show_estimated_cost = money(this.project.estimated_cost)
  315. // 判断是否显示快速上传按钮
  316. if (this.task.task_stage == 8) {
  317. this.isShowUpload = true
  318. } else {
  319. this.isShowUpload = false
  320. }
  321. // 不同任务阶段提示消息
  322. this.msg1 = this.infoMsg1[this.task.task_stage - 1]
  323. this.msg2 = this.isSpecial ? this.infoMsg3[this.task.task_stage - 1] : this.infoMsg2[this.task
  324. .task_stage - 1]
  325. })
  326. },
  327. getTaskLogs() {
  328. return this.$https.get('/youngee/c/t/g/get-task-log' +
  329. "?" +
  330. "task_id" +
  331. "=" +
  332. this.taskId
  333. ).then(res => {
  334. this.taskLogs = res.data.data
  335. })
  336. },
  337. toUpload() {
  338. if (this.task.task_stage == 8) { // 上传作业
  339. var data = {
  340. taskId: this.taskId,
  341. assignmentStatus: this.task.assignment_status
  342. };
  343. data = JSON.stringify(data)
  344. uni.navigateTo({
  345. url: '/page_workspace/selection/assignment/upload?textObj=' + encodeURIComponent(data)
  346. });
  347. }
  348. },
  349. toScriptRecord() {
  350. var data = {
  351. taskId: this.task.task_id,
  352. };
  353. data = JSON.stringify(data)
  354. uni.navigateTo({
  355. url: '/page_workspace/task/record/scriptrecord?textObj=' + encodeURIComponent(data)
  356. });
  357. },
  358. toTaskDeatail() {
  359. uni.navigateTo({
  360. url: '/page_selectionsquare/selectiondetail/selectiondetail?id=' + this.project.selection_id
  361. });
  362. },
  363. toApplyinfo() {
  364. var data = {
  365. account: this.account,
  366. };
  367. data = JSON.stringify(data)
  368. uni.navigateTo({
  369. url: '/page_workspace/task/information/applyInformation?textObj=' + encodeURIComponent(data)
  370. });
  371. },
  372. toLogisticsinfo() {
  373. // var data = {
  374. // address: this.address,
  375. // taskId: this.task.task_id,
  376. // projectForm: this.project.project_form
  377. // };
  378. // data = JSON.stringify(data)
  379. // uni.navigateTo({
  380. // url: '/page_workspace/task/information/deliveryInformation?textObj=' + encodeURIComponent(data)
  381. // });
  382. var data = {
  383. taskId: this.task.task_id,
  384. };
  385. data = JSON.stringify(data)
  386. uni.navigateTo({
  387. url: '/page_workspace/selection/logistics/logisticsdetail?textObj=' + encodeURIComponent(data)
  388. });
  389. },
  390. editAddress() {
  391. var data = {
  392. address: this.address,
  393. taskId: this.task.task_id,
  394. };
  395. data = JSON.stringify(data)
  396. uni.navigateTo({
  397. url: '/page_workspace/task/editaddress?textObj=' + encodeURIComponent(data)
  398. });
  399. },
  400. // 计算结束时间
  401. thistime(val) {
  402. // 转换格式
  403. var beginTime = new Date(val.replace(/-/g, "/"));
  404. // 当前时间
  405. var thisTime = new Date();
  406. // 相减
  407. var dateMiss = beginTime.getTime() - thisTime.getTime();
  408. this.isTimeOut = dateMiss < 0 ? true : false
  409. dateMiss = dateMiss < 0 ? -dateMiss : dateMiss
  410. // 天数
  411. var day = Math.floor(dateMiss / (24 * 3600 * 1000));
  412. // 减去天数剩下的毫秒数
  413. var backOne = dateMiss % (24 * 3600 * 1000);
  414. // 小时数
  415. var hours = Math.floor(backOne / (3600 * 1000));
  416. // 减去小时数剩下的毫秒数
  417. var backHour = backOne % (3600 * 1000);
  418. // 分钟数
  419. var min = Math.floor(backHour / (60 * 1000));
  420. var deadline_time = day + '天' + hours + '时' + min + '分'
  421. return deadline_time
  422. },
  423. toWithdraw() {
  424. uni.navigateTo({
  425. url: '/pages/mycenter/myincome?showTab=1'
  426. });
  427. },
  428. submit() {
  429. if (this.task.task_stage == 7) { // 提交脚本
  430. let that = this
  431. uni.showModal({
  432. title: '提示',
  433. content: '提交后无法修改并进行审核,确认提交?',
  434. success: function(res) {
  435. if (res.confirm) {
  436. that.$https.get('/youngee/c/t/g/submit-task-script' +
  437. "?" +
  438. "task_id" +
  439. "=" +
  440. that.task.task_id)
  441. .then(res => {
  442. console.log(res)
  443. uni.navigateBack()
  444. })
  445. } else if (res.cancel) {
  446. console.log('用户点击取消');
  447. }
  448. }
  449. });
  450. } else if (this.task.task_stage == 9) { // 提交初稿
  451. let that = this
  452. uni.showModal({
  453. title: '提示',
  454. content: '提交后无法修改并进行审核,确认提交?',
  455. success: function(res) {
  456. if (res.confirm) {
  457. that.$https.get('/youngee/c/t/g/submit-task-sketch' +
  458. "?" +
  459. "task_id" +
  460. "=" +
  461. that.task.task_id)
  462. .then(res => {
  463. console.log(res)
  464. uni.navigateBack()
  465. })
  466. } else if (res.cancel) {
  467. console.log('用户点击取消');
  468. }
  469. }
  470. });
  471. } else if (this.task.task_stage == 11) { // 提交链接
  472. let that = this
  473. uni.showModal({
  474. title: '提示',
  475. content: '提交后无法修改并进行审核,确认提交?',
  476. success: function(res) {
  477. if (res.confirm) {
  478. that.$https.get('/youngee/c/t/g/submit-task-link' +
  479. "?" +
  480. "task_id" +
  481. "=" +
  482. that.task.task_id)
  483. .then(res => {
  484. console.log(res)
  485. uni.navigateBack()
  486. })
  487. } else if (res.cancel) {
  488. console.log('用户点击取消');
  489. }
  490. }
  491. });
  492. } else if (this.task.task_stage == 13) { // 提交数据
  493. let that = this
  494. uni.showModal({
  495. title: '提示',
  496. content: '提交后无法修改并进行审核,确认提交?',
  497. success: function(res) {
  498. if (res.confirm) {
  499. that.$https.get('/youngee/c/t/g/submit-task-data' +
  500. "?" +
  501. "task_id" +
  502. "=" +
  503. that.task.task_id)
  504. .then(res => {
  505. console.log(res)
  506. uni.navigateBack()
  507. })
  508. } else if (res.cancel) {
  509. console.log('用户点击取消');
  510. }
  511. }
  512. });
  513. }
  514. }
  515. }
  516. }
  517. </script>
  518. <style lang="scss" scoped>
  519. text {
  520. font-size: 12px;
  521. }
  522. .basicInfo {
  523. display: flex;
  524. align-items: center;
  525. justify-content: center;
  526. margin-top: 20rpx;
  527. padding: 20rpx;
  528. font-size: 30rpx;
  529. background-color: #FFFFFF;
  530. .basicInfo_txt {
  531. margin-left: 40rpx;
  532. // padding-top: 20rpx;
  533. }
  534. .tpc-txt1 {
  535. display: flex;
  536. justify-content: flex-start;
  537. // margin-left: 20rpx;
  538. }
  539. .tpc-txt2 {
  540. display: flex;
  541. align-items: center;
  542. justify-content: flex-end;
  543. padding-right: 10rpx;
  544. // margin-right: 20rpx;
  545. flex: 1;
  546. .tpc-icon {
  547. width: 30rpx;
  548. height: 30rpx;
  549. }
  550. }
  551. }
  552. .upload-btn {
  553. display: flex;
  554. align-items: center;
  555. justify-content: center;
  556. background-color: #f2d241;
  557. border-radius: 10rpx;
  558. padding: 5rpx;
  559. margin-left: 20rpx;
  560. cursor: pointer;
  561. }
  562. .address {
  563. display: flex;
  564. margin: 20rpx 0;
  565. // padding: 20rpx 20rpx;
  566. background-color: #FFFFFF;
  567. justify-content: space-around;
  568. align-items: center;
  569. .address_icon {
  570. width: 15%;
  571. vertical-align: middle;
  572. display: flex;
  573. justify-content: center;
  574. }
  575. .address_edit {
  576. width: 15%;
  577. }
  578. .address_edit image {
  579. vertical-align: middle;
  580. width: 50rpx;
  581. height: 50rpx;
  582. display: inline-block;
  583. padding-right: 14rpx;
  584. }
  585. .ipon {
  586. color: #333333;
  587. font-size: 30rpx;
  588. margin-bottom: 10rpx;
  589. }
  590. }
  591. .keyInfo {
  592. padding: 20rpx 20rpx;
  593. background-color: #FFFFFF;
  594. .keyInfo_task {
  595. // color: #999999;
  596. }
  597. }
  598. .keyInfo h3 {}
  599. .keyInfo p {
  600. font-size: 30rpx;
  601. }
  602. .account {
  603. display: flex;
  604. align-items: center;
  605. // justify-content: space-between;
  606. // width: 90%;
  607. margin: 20rpx 0;
  608. padding: 20rpx 20rpx;
  609. background-color: #FFFFFF;
  610. font-size: 35rpx;
  611. .account_txt {
  612. display: inline-block;
  613. padding: 0 0 0 1%;
  614. width: 400rpx;
  615. }
  616. .account_txt image {
  617. vertical-align: middle;
  618. width: 50rpx;
  619. height: 50rpx;
  620. display: inline-block;
  621. padding-right: 14rpx;
  622. }
  623. .account_fans {
  624. display: flex;
  625. width: 250rpx;
  626. }
  627. .account_fans p {
  628. display: inline-block;
  629. color: #333333;
  630. }
  631. .account_btn {}
  632. }
  633. .task-progress {
  634. padding: 20rpx;
  635. .task-progress-card {
  636. margin: 15rpx 0;
  637. display: flex;
  638. align-items: center;
  639. // margin: 20rpx;
  640. padding: 10rpx;
  641. font-size: 30rpx;
  642. border-radius: 10rpx;
  643. .tpc-txt1 {
  644. display: flex;
  645. justify-content: flex-start;
  646. // margin-left: 20rpx;
  647. }
  648. .tpc-txt2 {
  649. display: flex;
  650. align-items: center;
  651. justify-content: flex-end;
  652. // margin-right: 20rpx;
  653. flex: 1;
  654. .tpc-icon {
  655. width: 30rpx;
  656. height: 30rpx;
  657. }
  658. }
  659. }
  660. .task-progress-info {
  661. padding: 10rpx;
  662. font-size: 30rpx;
  663. border-radius: 10rpx;
  664. background-color: #f2f2f2;
  665. }
  666. }
  667. .block {
  668. width: 100%;
  669. height: 100rpx;
  670. margin-top: 5%;
  671. }
  672. .submit {
  673. box-shadow: 0rpx 5rpx 40rpx #ccc;
  674. width: 100%;
  675. position: fixed;
  676. bottom: 0rpx;
  677. display: flex;
  678. height: 90rpx;
  679. padding-top: 2%;
  680. background-color: #FFFFFF;
  681. .submit_btn {
  682. width: 60%;
  683. background-color: #FCCF41;
  684. border-radius: 20rpx;
  685. font-size: 36rpx;
  686. line-height: 200%;
  687. letter-spacing: 10rpx;
  688. height: 80%;
  689. }
  690. }
  691. .line {
  692. border-bottom: 1rpx solid #d5d5d5;
  693. width: 98%;
  694. margin: 10rpx 1%;
  695. }
  696. .pipline {
  697. display: flex;
  698. align-items: center;
  699. justify-content: center;
  700. margin: 20rpx;
  701. // border: #FCCF41 1rpx dashed;
  702. }
  703. .pipline image {
  704. /* width: 600rpx; */
  705. height: 150rpx;
  706. }
  707. </style>