sectaskdetail.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  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. if (res.data.code != 0) {
  268. return
  269. }
  270. const data = res.data.data
  271. this.task = data.sec_task_info
  272. this.withdrawStatus = data.withdraw_status
  273. // 地址解析
  274. this.address = JSON.parse(this.task.talent_post_addr_snap);
  275. let a = this.address.region_code.toString().slice(0, 2)
  276. let b = this.address.region_code.toString().slice(0, 4)
  277. let c = 0
  278. for (var i = 0; i < region.length; i++) {
  279. if (region[i].code == a) {
  280. a = region[i].name
  281. for (var j = 0; j < region[i].children.length; j++) {
  282. if (region[i].children[j].code == b) {
  283. b = region[i].children[j].name
  284. for (var o = 0; o < region[i].children[j].children.length; o++) {
  285. if (region[i].children[j].children[o].code == this.address
  286. .region_code) {
  287. c = region[i].children[j].children[o].name
  288. }
  289. }
  290. }
  291. }
  292. }
  293. }
  294. this.address.full_detail_addr = a + b + c + this.address.detail_addr
  295. // 账号信息
  296. this.account = JSON.parse(this.task.talent_platform_info_snap);
  297. this.account.show_fans_count = fansview(this.account.fans_count)
  298. // 选品项目信息
  299. this.project = data.selection_detail
  300. this.project.Product = JSON.parse(this.project.product_snap);
  301. this.project.Product.showProductPrice = money(this.project.Product.ProductPrice)
  302. this.project.show_estimated_cost = money(this.project.Product.ProductPrice)
  303. this.project.project_form = this.project.Product.ProductType === 14 ? 3 : 1
  304. if (this.project.product_photo_snap != '') {
  305. let ProductPhoto = JSON.parse(this.project.product_photo_snap);
  306. for (let j = 0; j < ProductPhoto.length; ++j) {
  307. if (ProductPhoto[j].Symbol == 1) {
  308. this.product = ProductPhoto[j]
  309. }
  310. }
  311. }
  312. this.project.show_task_reward = money(this.project.task_reward)
  313. // this.project.show_estimated_cost = money(this.project.estimated_cost)
  314. // 判断是否显示快速上传按钮
  315. if (this.task.task_stage == 8) {
  316. this.isShowUpload = true
  317. } else {
  318. this.isShowUpload = false
  319. }
  320. // 不同任务阶段提示消息
  321. this.msg1 = this.infoMsg1[this.task.task_stage - 1]
  322. this.msg2 = this.isSpecial ? this.infoMsg3[this.task.task_stage - 1] : this.infoMsg2[this.task
  323. .task_stage - 1]
  324. })
  325. },
  326. getTaskLogs() {
  327. return this.$https.get('/youngee/c/t/g/get-task-log' +
  328. "?" +
  329. "task_id" +
  330. "=" +
  331. this.taskId
  332. ).then(res => {
  333. this.taskLogs = res.data.data
  334. })
  335. },
  336. toUpload() {
  337. if (this.task.task_stage == 8) { // 上传作业
  338. var data = {
  339. taskId: this.taskId,
  340. assignmentStatus: this.task.assignment_status
  341. };
  342. data = JSON.stringify(data)
  343. uni.navigateTo({
  344. url: '/page_workspace/selection/assignment/upload?textObj=' + encodeURIComponent(data)
  345. });
  346. }
  347. },
  348. toScriptRecord() {
  349. var data = {
  350. taskId: this.task.task_id,
  351. };
  352. data = JSON.stringify(data)
  353. uni.navigateTo({
  354. url: '/page_workspace/task/record/scriptrecord?textObj=' + encodeURIComponent(data)
  355. });
  356. },
  357. toTaskDeatail() {
  358. uni.navigateTo({
  359. url: '/page_selectionsquare/selectiondetail/selectiondetail?id=' + this.project.selection_id
  360. });
  361. },
  362. toApplyinfo() {
  363. var data = {
  364. account: this.account,
  365. };
  366. data = JSON.stringify(data)
  367. uni.navigateTo({
  368. url: '/page_workspace/task/information/applyInformation?textObj=' + encodeURIComponent(data)
  369. });
  370. },
  371. toLogisticsinfo() {
  372. // var data = {
  373. // address: this.address,
  374. // taskId: this.task.task_id,
  375. // projectForm: this.project.project_form
  376. // };
  377. // data = JSON.stringify(data)
  378. // uni.navigateTo({
  379. // url: '/page_workspace/task/information/deliveryInformation?textObj=' + encodeURIComponent(data)
  380. // });
  381. var data = {
  382. taskId: this.task.task_id,
  383. };
  384. data = JSON.stringify(data)
  385. uni.navigateTo({
  386. url: '/page_workspace/selection/logistics/logisticsdetail?textObj=' + encodeURIComponent(data)
  387. });
  388. },
  389. editAddress() {
  390. var data = {
  391. address: this.address,
  392. taskId: this.task.task_id,
  393. };
  394. data = JSON.stringify(data)
  395. uni.navigateTo({
  396. url: '/page_workspace/task/editaddress?textObj=' + encodeURIComponent(data)
  397. });
  398. },
  399. // 计算结束时间
  400. thistime(val) {
  401. // 转换格式
  402. var beginTime = new Date(val.replace(/-/g, "/"));
  403. // 当前时间
  404. var thisTime = new Date();
  405. // 相减
  406. var dateMiss = beginTime.getTime() - thisTime.getTime();
  407. this.isTimeOut = dateMiss < 0 ? true : false
  408. dateMiss = dateMiss < 0 ? -dateMiss : dateMiss
  409. // 天数
  410. var day = Math.floor(dateMiss / (24 * 3600 * 1000));
  411. // 减去天数剩下的毫秒数
  412. var backOne = dateMiss % (24 * 3600 * 1000);
  413. // 小时数
  414. var hours = Math.floor(backOne / (3600 * 1000));
  415. // 减去小时数剩下的毫秒数
  416. var backHour = backOne % (3600 * 1000);
  417. // 分钟数
  418. var min = Math.floor(backHour / (60 * 1000));
  419. var deadline_time = day + '天' + hours + '时' + min + '分'
  420. return deadline_time
  421. },
  422. toWithdraw() {
  423. uni.navigateTo({
  424. url: '/pages/mycenter/myincome?showTab=1'
  425. });
  426. },
  427. submit() {
  428. if (this.task.task_stage == 7) { // 提交脚本
  429. let that = this
  430. uni.showModal({
  431. title: '提示',
  432. content: '提交后无法修改并进行审核,确认提交?',
  433. success: function(res) {
  434. if (res.confirm) {
  435. that.$https.get('/youngee/c/t/g/submit-task-script' +
  436. "?" +
  437. "task_id" +
  438. "=" +
  439. that.task.task_id)
  440. .then(res => {
  441. console.log(res)
  442. uni.navigateBack()
  443. })
  444. } else if (res.cancel) {
  445. console.log('用户点击取消');
  446. }
  447. }
  448. });
  449. } else if (this.task.task_stage == 9) { // 提交初稿
  450. let that = this
  451. uni.showModal({
  452. title: '提示',
  453. content: '提交后无法修改并进行审核,确认提交?',
  454. success: function(res) {
  455. if (res.confirm) {
  456. that.$https.get('/youngee/c/t/g/submit-task-sketch' +
  457. "?" +
  458. "task_id" +
  459. "=" +
  460. that.task.task_id)
  461. .then(res => {
  462. console.log(res)
  463. uni.navigateBack()
  464. })
  465. } else if (res.cancel) {
  466. console.log('用户点击取消');
  467. }
  468. }
  469. });
  470. } else if (this.task.task_stage == 11) { // 提交链接
  471. let that = this
  472. uni.showModal({
  473. title: '提示',
  474. content: '提交后无法修改并进行审核,确认提交?',
  475. success: function(res) {
  476. if (res.confirm) {
  477. that.$https.get('/youngee/c/t/g/submit-task-link' +
  478. "?" +
  479. "task_id" +
  480. "=" +
  481. that.task.task_id)
  482. .then(res => {
  483. console.log(res)
  484. uni.navigateBack()
  485. })
  486. } else if (res.cancel) {
  487. console.log('用户点击取消');
  488. }
  489. }
  490. });
  491. } else if (this.task.task_stage == 13) { // 提交数据
  492. let that = this
  493. uni.showModal({
  494. title: '提示',
  495. content: '提交后无法修改并进行审核,确认提交?',
  496. success: function(res) {
  497. if (res.confirm) {
  498. that.$https.get('/youngee/c/t/g/submit-task-data' +
  499. "?" +
  500. "task_id" +
  501. "=" +
  502. that.task.task_id)
  503. .then(res => {
  504. console.log(res)
  505. uni.navigateBack()
  506. })
  507. } else if (res.cancel) {
  508. console.log('用户点击取消');
  509. }
  510. }
  511. });
  512. }
  513. }
  514. }
  515. }
  516. </script>
  517. <style lang="scss" scoped>
  518. text {
  519. font-size: 12px;
  520. }
  521. .basicInfo {
  522. display: flex;
  523. align-items: center;
  524. justify-content: center;
  525. margin-top: 20rpx;
  526. padding: 20rpx;
  527. font-size: 30rpx;
  528. background-color: #FFFFFF;
  529. .basicInfo_txt {
  530. margin-left: 40rpx;
  531. // padding-top: 20rpx;
  532. }
  533. .tpc-txt1 {
  534. display: flex;
  535. justify-content: flex-start;
  536. // margin-left: 20rpx;
  537. }
  538. .tpc-txt2 {
  539. display: flex;
  540. align-items: center;
  541. justify-content: flex-end;
  542. padding-right: 10rpx;
  543. // margin-right: 20rpx;
  544. flex: 1;
  545. .tpc-icon {
  546. width: 30rpx;
  547. height: 30rpx;
  548. }
  549. }
  550. }
  551. .upload-btn {
  552. display: flex;
  553. align-items: center;
  554. justify-content: center;
  555. background-color: #f2d241;
  556. border-radius: 10rpx;
  557. padding: 5rpx;
  558. margin-left: 20rpx;
  559. cursor: pointer;
  560. }
  561. .address {
  562. display: flex;
  563. margin: 20rpx 0;
  564. // padding: 20rpx 20rpx;
  565. background-color: #FFFFFF;
  566. justify-content: space-around;
  567. align-items: center;
  568. .address_icon {
  569. width: 15%;
  570. vertical-align: middle;
  571. display: flex;
  572. justify-content: center;
  573. }
  574. .address_edit {
  575. width: 15%;
  576. }
  577. .address_edit image {
  578. vertical-align: middle;
  579. width: 50rpx;
  580. height: 50rpx;
  581. display: inline-block;
  582. padding-right: 14rpx;
  583. }
  584. .ipon {
  585. color: #333333;
  586. font-size: 30rpx;
  587. margin-bottom: 10rpx;
  588. }
  589. }
  590. .keyInfo {
  591. padding: 20rpx 20rpx;
  592. background-color: #FFFFFF;
  593. .keyInfo_task {
  594. // color: #999999;
  595. }
  596. }
  597. .keyInfo h3 {}
  598. .keyInfo p {
  599. font-size: 30rpx;
  600. }
  601. .account {
  602. display: flex;
  603. align-items: center;
  604. // justify-content: space-between;
  605. // width: 90%;
  606. margin: 20rpx 0;
  607. padding: 20rpx 20rpx;
  608. background-color: #FFFFFF;
  609. font-size: 35rpx;
  610. .account_txt {
  611. display: inline-block;
  612. padding: 0 0 0 1%;
  613. width: 400rpx;
  614. }
  615. .account_txt image {
  616. vertical-align: middle;
  617. width: 50rpx;
  618. height: 50rpx;
  619. display: inline-block;
  620. padding-right: 14rpx;
  621. }
  622. .account_fans {
  623. display: flex;
  624. width: 250rpx;
  625. }
  626. .account_fans p {
  627. display: inline-block;
  628. color: #333333;
  629. }
  630. .account_btn {}
  631. }
  632. .task-progress {
  633. padding: 20rpx;
  634. .task-progress-card {
  635. margin: 15rpx 0;
  636. display: flex;
  637. align-items: center;
  638. // margin: 20rpx;
  639. padding: 10rpx;
  640. font-size: 30rpx;
  641. border-radius: 10rpx;
  642. .tpc-txt1 {
  643. display: flex;
  644. justify-content: flex-start;
  645. // margin-left: 20rpx;
  646. }
  647. .tpc-txt2 {
  648. display: flex;
  649. align-items: center;
  650. justify-content: flex-end;
  651. // margin-right: 20rpx;
  652. flex: 1;
  653. .tpc-icon {
  654. width: 30rpx;
  655. height: 30rpx;
  656. }
  657. }
  658. }
  659. .task-progress-info {
  660. padding: 10rpx;
  661. font-size: 30rpx;
  662. border-radius: 10rpx;
  663. background-color: #f2f2f2;
  664. }
  665. }
  666. .block {
  667. width: 100%;
  668. height: 100rpx;
  669. margin-top: 5%;
  670. }
  671. .submit {
  672. box-shadow: 0rpx 5rpx 40rpx #ccc;
  673. width: 100%;
  674. position: fixed;
  675. bottom: 0rpx;
  676. display: flex;
  677. height: 90rpx;
  678. padding-top: 2%;
  679. background-color: #FFFFFF;
  680. .submit_btn {
  681. width: 60%;
  682. background-color: #FCCF41;
  683. border-radius: 20rpx;
  684. font-size: 36rpx;
  685. line-height: 200%;
  686. letter-spacing: 10rpx;
  687. height: 80%;
  688. }
  689. }
  690. .line {
  691. border-bottom: 1rpx solid #d5d5d5;
  692. width: 98%;
  693. margin: 10rpx 1%;
  694. }
  695. .pipline {
  696. display: flex;
  697. align-items: center;
  698. justify-content: center;
  699. margin: 20rpx;
  700. // border: #FCCF41 1rpx dashed;
  701. }
  702. .pipline image {
  703. /* width: 600rpx; */
  704. height: 150rpx;
  705. }
  706. </style>