index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768
  1. <template>
  2. <!-- 生产首页 -->
  3. <view class="content-box">
  4. <uni-nav-bar
  5. fixed="true"
  6. statusBar="true"
  7. left-icon="back"
  8. :title="title"
  9. background-color="#157A2C"
  10. color="#fff"
  11. @clickLeft="back"
  12. ></uni-nav-bar>
  13. <view class="top-wrapper cx">
  14. <stepsNav
  15. v-if="info.taskId && stepsList.length"
  16. :stepsList="stepsList"
  17. :taskId="info.taskId"
  18. @selectStep="selectStep"
  19. ></stepsNav>
  20. <view class="tab_box rx-sc">
  21. <view
  22. class="tab_item"
  23. :class="{ active: tabType == 1 }"
  24. @click="handTab(1)"
  25. >基本信息</view
  26. >
  27. <view
  28. class="tab_item"
  29. :class="{ active: tabType == 2 }"
  30. @click="handTab(2)"
  31. >生产明细</view
  32. >
  33. <view
  34. class="tab_item"
  35. :class="{ active: tabType == 3 }"
  36. @click="handTab(3)"
  37. >详情</view
  38. >
  39. </view>
  40. </view>
  41. <view class="list_box">
  42. <u-list @scrolltolower="scrolltolower" key="info" v-if="tabType == 1">
  43. <view class="item_list rx-bc">
  44. <text class="lable">生产工单号</text>
  45. <text>{{ info.code }}</text>
  46. </view>
  47. <view class="item_list rx-bc">
  48. <text class="lable">计划编号</text>
  49. <text>{{ info.productionPlanCode }}</text>
  50. </view>
  51. <view class="item_list rx-bc">
  52. <text class="lable">工艺路线</text>
  53. <text>{{ info.produceRoutingName }}</text>
  54. </view>
  55. <view class="item_list rx-bc">
  56. <text class="lable">批次号</text>
  57. <text> {{ info.batchNo }}</text>
  58. </view>
  59. <view class="item_list rx-bc">
  60. <text class="lable">编码</text>
  61. <text> {{ info.productCode }}</text>
  62. </view>
  63. <view class="item_list rx-bc">
  64. <text class="lable">委外状态</text>
  65. <text> {{ info.outsourceStatus | outsourceStatusText }}</text>
  66. </view>
  67. <view class="item_list rx-bc">
  68. <text class="lable">名称</text>
  69. <text>{{ info.productName }}</text>
  70. </view>
  71. <view class="item_list rx-bc">
  72. <text class="lable">牌号</text>
  73. <text>{{ info.brandNo }}</text>
  74. </view>
  75. <view class="item_list rx-bc">
  76. <text class="lable">规格</text>
  77. <text>{{ info.specification }}</text>
  78. </view>
  79. <view class="item_list rx-bc">
  80. <text class="lable">型号</text>
  81. <text>{{ info.model }}</text>
  82. </view>
  83. <view class="item_list rx-bc">
  84. <text class="lable">要求生产数量</text>
  85. <text>{{ info.formingNum }} {{ info.unit }} </text>
  86. </view>
  87. <view class="item_list rx-bc">
  88. <text class="lable">要求生产重量</text>
  89. <text>{{ info.formingWeight }} {{ info.weightUnit }}</text>
  90. </view>
  91. <view class="item_list rx-bc">
  92. <text class="lable">报工类型</text>
  93. <text>{{ info.singleReport == 1 ? "单个报工" : "批量报工" }}</text>
  94. </view>
  95. <view class="item_list rx-bc">
  96. <text class="lable">领料状态</text>
  97. <text>{{ isPickingStatus }}</text>
  98. </view>
  99. <view class="item_list rx-bc">
  100. <text class="lable">投料状态</text>
  101. <text>{{ isFeedStatus }}</text>
  102. </view>
  103. <view class="item_list rx-bc">
  104. <text class="lable">已完成生产数量</text>
  105. <text>{{ info.formedNum }}</text>
  106. </view>
  107. <view class="item_list rx-bc">
  108. <text class="lable">已完成生产重量</text>
  109. <text>{{ info.formedWeight }}</text>
  110. </view>
  111. <view class="item_list rx-bc">
  112. <text class="lable">计划开始时间</text>
  113. <text>{{ info.planStartTime }}</text>
  114. </view>
  115. <view class="item_list rx-bc">
  116. <text class="lable">计划结束时间</text>
  117. <text>{{ info.planCompleteTime }}</text>
  118. </view>
  119. </u-list>
  120. <u-list @scrolltolower="scrolltolower" key="detail" v-if="tabType == 2">
  121. <view
  122. v-for="(item, index) in produceList"
  123. :key="index"
  124. class="detail-list"
  125. >
  126. <view class="name"
  127. >{{ item.taskName }}
  128. <text v-if="index == 0" style="color: #157a2c; font-size: 32rpx">
  129. (首工序)</text
  130. >
  131. </view>
  132. <view class="list rx-bc" @click="handDetails(item)">
  133. <view class="title rx-sc">
  134. <image class="icon" src="~@/static/pda/layers.svg"></image>
  135. 待投料数量
  136. </view>
  137. <view class="rx-ec" v-if="item.firstTaskDetails.length > 0">
  138. <text style="color: #157a2c; font-size: 24rpx"> 明细</text>
  139. <image
  140. class="arrow_right2"
  141. src="~@/static/pda/arrow_right2.svg"
  142. ></image>
  143. </view>
  144. <view class="rx-ec" v-else>
  145. {{ item.waitFeedNum }}
  146. <image
  147. class="arrow_right2"
  148. src="~@/static/pda/arrow_right2.svg"
  149. ></image>
  150. </view>
  151. </view>
  152. <view class="list rx-bc" @click="handDetails(item)">
  153. <view class="title rx-sc">
  154. <image class="icon" src="~@/static/pda/check-square.svg"></image>
  155. 已投料数量
  156. </view>
  157. <view class="rx-ec" v-if="item.firstTaskDetails.length > 0">
  158. <text style="color: #157a2c; font-size: 24rpx"> 明细</text>
  159. <image
  160. class="arrow_right2"
  161. src="~@/static/pda/arrow_right2.svg"
  162. ></image>
  163. </view>
  164. <view class="rx-ec" v-else>
  165. {{ item.feedNum }}
  166. <image
  167. class="arrow_right2"
  168. src="~@/static/pda/arrow_right2.svg"
  169. ></image>
  170. </view>
  171. </view>
  172. <view class="list rx-bc">
  173. <view class="title rx-sc">
  174. <image class="icon" src="~@/static/pda/target.svg"></image>
  175. 已报工数量
  176. </view>
  177. <view class="rx-ec">
  178. {{ item.reportedNum }}
  179. <image
  180. class="arrow_right2"
  181. src="~@/static/pda/arrow_right2.svg"
  182. ></image>
  183. </view>
  184. </view>
  185. </view>
  186. </u-list>
  187. <u-list
  188. @scrolltolower="scrolltolower"
  189. key="btnDeatils"
  190. v-if="tabType == 3"
  191. >
  192. <view style="margin-top: 15px">
  193. <button class="search_btn" @click="handleDetails">报工详情</button>
  194. </view>
  195. <view style="margin-top: 15px">
  196. <button class="search_btn" @click="handleFeedDetails">
  197. 投料详情
  198. </button>
  199. </view>
  200. </u-list>
  201. </view>
  202. <!-- // 按钮组件 -->
  203. <view class="bottom-wrapper">
  204. <bottomOperate
  205. @operate="operate"
  206. @refresh="refresh"
  207. :taskObj="{
  208. currentTaskName: currentTaskName || info.taskName,
  209. currentTaskId: currentTaskId || info.taskId,
  210. workOrderId: id,
  211. existOutsource: existOutsource,
  212. }"
  213. :state="currentType"
  214. :gdStatus="info.status"
  215. :controlReportMethod="controlReportMethod"
  216. :stepsList="stepsList"
  217. :info="info"
  218. ></bottomOperate>
  219. </view>
  220. <productionDetailed ref="productionDetailedRef"> </productionDetailed>
  221. </view>
  222. </template>
  223. <script>
  224. import bottomOperate from "../../components/bottomOperate.vue";
  225. import stepsNav from "../../components/stepsNav.vue";
  226. import productionDetailed from "./productionDetailed.vue";
  227. import {
  228. getTaskInstanceList,
  229. workorderInfo,
  230. produceDetail,
  231. checkStatus,
  232. skipTask,
  233. } from "@/api/pda/workOrder.js";
  234. export default {
  235. components: {
  236. bottomOperate,
  237. stepsNav,
  238. productionDetailed,
  239. },
  240. filters: {
  241. outsourceStatusText(v) {
  242. return v == 1 ? "未委外" : v == 2 ? "委外中" : v == 3 ? "完成委外" : "";
  243. },
  244. },
  245. computed: {
  246. isFeedStatus() {
  247. const currentStep = this.stepsList?.[this.currentStepIndex]
  248. // 投料状态 0未投料 1已投料 2已报工
  249. return this.feedStatusOption.find(item => item.value === currentStep?.feedStatus)?.label || ''
  250. },
  251. isPickingStatus() {
  252. const currentStep = this.stepsList?.[this.currentStepIndex]
  253. // 领料状态 0未领料 1领料中2已出库3已驳回
  254. return this.pickStatusOption.find(item => item.value === currentStep?.pickStatus)?.label || ''
  255. }
  256. },
  257. data() {
  258. return {
  259. title: "",
  260. tabType: 1,
  261. id: null,
  262. stepsList: [],
  263. info: {},
  264. taskId: null,
  265. singleReport: null, // 报工类型 1单个报工 2批量报工
  266. produceList: [],
  267. feedAllow: true,
  268. currentTaskId: null,
  269. currentTaskName: null,
  270. currentType: 1,
  271. existOutsource: 0,
  272. controlReportMethod: null,
  273. clientEnvironmentId:
  274. uni.getStorageSync("userInfo") &&
  275. uni.getStorageSync("userInfo").clientEnvironmentId, // *1 主环境-601环境 2 soll-索尔环境 3 tg-碳谷环境
  276. feedNeedEquipment: 1, //投料是否要添加生产设备1是0否
  277. currentStepIndex: 0, // 当前步骤索引
  278. pickStatusOption: [
  279. {
  280. label: '未领料',
  281. value: 0
  282. },
  283. {
  284. label: '领料中',
  285. value: 1
  286. },
  287. {
  288. label: '已出库',
  289. value: 2
  290. },
  291. {
  292. label: '已驳回',
  293. value: 3
  294. }
  295. ],
  296. feedStatusOption: [
  297. {
  298. label: '未投料',
  299. value: 0
  300. },
  301. {
  302. label: '已投料',
  303. value: 1
  304. },
  305. {
  306. label: '已报工',
  307. value: 2
  308. }
  309. ]
  310. };
  311. },
  312. onLoad(options) {
  313. this.title = options.title;
  314. this.id = options.id;
  315. this.singleReport = options.singleReport; // 报工类型
  316. uni.showLoading({
  317. title: "加载中",
  318. });
  319. },
  320. onShow() {
  321. this.getInfo();
  322. this.getSteps();
  323. this.produce(); // 生产明细
  324. },
  325. methods: {
  326. scrolltolower() {},
  327. handTab(type) {
  328. if (type != this.tabType) {
  329. this.tabType = type;
  330. }
  331. },
  332. getSteps() {
  333. getTaskInstanceList(this.id).then((res) => {
  334. // for(let i = 0; i < res.length; i++) {
  335. // if(res[i].taskTypeName == '自然干燥' ||res[i].taskTypeName == '升温干燥') {
  336. // res[i - 1].btns = [ { name: '更换周转车', type: 'turnover'}]
  337. // }
  338. // }
  339. this.stepsList = res;
  340. this.setTypeFn();
  341. });
  342. },
  343. refresh() {
  344. console.log(1);
  345. this.getInfo();
  346. },
  347. getInfo() {
  348. workorderInfo(this.id)
  349. .then((res) => {
  350. console.log(res, 99999999999);
  351. this.info = res;
  352. this.taskId = res.taskId;
  353. this.setTypeFn();
  354. this.feedStatus();
  355. uni.hideLoading();
  356. })
  357. .catch(() => {
  358. uni.hideLoading();
  359. });
  360. },
  361. setTypeFn() {
  362. this.stepsList.length &&
  363. this.stepsList.find((f) => {
  364. let id = this.currentTaskId || this.taskId;
  365. if (f.taskId == id) {
  366. (this.currentType = f.type),
  367. (this.existOutsource = f.existOutsource);
  368. this.controlReportMethod = f.controlReportMethod;
  369. this.currentStepIndex = f.index;
  370. }
  371. });
  372. },
  373. feedStatus() {
  374. let taskId = this.currentTaskId || this.taskId;
  375. checkStatus(this.id, taskId).then((res) => {
  376. this.feedAllow = res;
  377. });
  378. },
  379. // 点击工序列表
  380. selectStep(item) {
  381. console.log('item', item)
  382. this.currentTaskId = item.taskId;
  383. this.currentTaskName = item.taskTypeName;
  384. this.existOutsource = item.existOutsource;
  385. this.currentType = item.type;
  386. this.controlReportMethod = item.controlReportMethod;
  387. this.feedNeedEquipment = item.feedNeedEquipment;
  388. this.currentStepIndex = item.index;
  389. this.feedStatus();
  390. },
  391. // 点击之后调用事件
  392. operate(type, item) {
  393. console.log(4444, type, item);
  394. // if (this.info.outsourceStatus == 2) {
  395. // uni.showToast({
  396. // title: "工单在委外中",
  397. // icon: "none",
  398. // })
  399. // return false
  400. // }
  401. if (this.info.status == 9) {
  402. uni.showToast({
  403. title: "工单在暂停中",
  404. icon: "none",
  405. });
  406. return false;
  407. }
  408. if (this.info.status == 10) {
  409. uni.showToast({
  410. title: "工单已终止",
  411. icon: "none",
  412. });
  413. return false;
  414. }
  415. let url;
  416. let taskId = this.currentTaskId || this.taskId;
  417. let taskName = this.currentTaskName || this.info.taskName;
  418. if (type == "picking") {
  419. url = "/pages/pda/picking/details";
  420. let _arr = JSON.stringify([this.info.id]);
  421. url += `?arr=${encodeURIComponent(_arr)}&taskId=${taskId}`;
  422. uni.navigateTo({
  423. url,
  424. });
  425. }
  426. // 投料
  427. else if (type == "feeding") {
  428. // this.outsourceForm.isFirstTask
  429. // 碳谷走老逻辑 批量走 老逻辑
  430. if (this.clientEnvironmentId == 3 || this.info.singleReport !== 1) {
  431. url = "/pages/pda/feeding/details";
  432. let _arr = JSON.stringify([this.info.id]);
  433. url += `?arr=${encodeURIComponent(
  434. _arr
  435. )}&taskId=${taskId}&taskName=${taskName}&type=${type}&feedNeedEquipment=${
  436. this.feedNeedEquipment
  437. }`;
  438. } else {
  439. // 单个投料
  440. let arr = this.stepsList.find((f) => f.taskId == this.info.taskId);
  441. // 首工序走老逻辑
  442. console.log(arr.isFirstTask, "11111");
  443. if (arr.isFirstTask == 1) {
  444. url = "/pages/pda/feeding/details";
  445. let _arr = JSON.stringify([this.info.id]);
  446. url += `?arr=${encodeURIComponent(
  447. _arr
  448. )}&taskId=${taskId}&taskName=${taskName}&type=${type}&feedNeedEquipment=${
  449. this.feedNeedEquipment
  450. }&taskType=${this.currentType}`;
  451. } else {
  452. // 首工序
  453. url = "/pages/pda/feeding/details";
  454. let _arr = JSON.stringify([this.info.id]);
  455. url += `?arr=${encodeURIComponent(
  456. _arr
  457. )}&taskId=${taskId}&taskName=${taskName}&type=${type}&feedNeedEquipment=${
  458. this.feedNeedEquipment
  459. }&taskType=${this.currentType}`;
  460. }
  461. }
  462. uni.navigateTo({
  463. url,
  464. });
  465. }
  466. // 报工
  467. else if (type == "jobBooking") {
  468. // if (!this.feedAllow || this.clientEnvironmentId == 3) {
  469. // } else {
  470. // uni.showToast({
  471. // title: "请先投料",
  472. // icon: "none",
  473. // })
  474. // }
  475. url = "/pages/pda/jobBooking/index/index";
  476. url += `?id=${this.info.id}&taskId=${taskId}&taskName=${taskName}
  477. &taskType=${this.currentType}&isOutsource=${item.isOutsource || 0}
  478. &categoryId=${this.info.categoryId}&singleReport=${this.info.singleReport}`;
  479. uni.navigateTo({
  480. url,
  481. });
  482. } else if (type == "turnover") {
  483. url = "/pages/pda/turnover/index/index";
  484. url += `?workOrderId=${this.info.id}&taskId=${taskId}&taskName=${taskName}`;
  485. uni.navigateTo({
  486. url,
  487. });
  488. } else if (type == "qualityTurnover") {
  489. url = "/pages/pda/turnover/index/quality";
  490. url += `?workOrderId=${this.info.id}&taskId=${taskId}&taskName=${taskName}`;
  491. uni.navigateTo({
  492. url,
  493. });
  494. } else if (type == "sample") {
  495. url = "/pages/pda/sample/index/index";
  496. url += `?workOrderId=${this.info.id}&taskId=${taskId}&taskName=${taskName}`;
  497. uni.navigateTo({
  498. url,
  499. });
  500. } else if (type == "sampleJob") {
  501. url = "/pages/pda/sample/index/jobBooking";
  502. url += `?workOrderId=${this.info.id}&taskId=${taskId}&taskName=${taskName}`;
  503. uni.navigateTo({
  504. url,
  505. });
  506. } else if (type == "inspection") {
  507. url = "/pages/pda/sample/inspection/index";
  508. url += `?workOrderId=${this.info.id}&taskId=${taskId}&taskName=${taskName}`;
  509. uni.navigateTo({
  510. url,
  511. });
  512. } else if (type == "inspectionJob") {
  513. url = "/pages/pda/sample/inspection/job";
  514. url += `?workOrderId=${this.info.id}&taskId=${taskId}&taskName=${taskName}`;
  515. uni.navigateTo({
  516. url,
  517. });
  518. } else if (type == "warehousing") {
  519. url = "/pages/pda/warehousing/index";
  520. url += `?workOrderId=${this.info.id}&taskId=${taskId}`;
  521. uni.navigateTo({
  522. url,
  523. });
  524. } else if (type == "skip") {
  525. uni.showModal({
  526. title: "提示",
  527. content: `是否跳过${taskName}工序!`,
  528. confirmText: "确认", //这块是确定按钮的文字
  529. success: (rr) => {
  530. if (rr.confirm) {
  531. let param = {
  532. taskId: this.currentTaskId || this.taskId,
  533. workOrderId: this.id,
  534. };
  535. skipTask(param).then((res) => {
  536. console.log(res);
  537. });
  538. } else {
  539. }
  540. },
  541. });
  542. } else if (type == "outPicking") {
  543. url = "/pages/pda/picking/details";
  544. let _arr = JSON.stringify([this.info.id]);
  545. url += `?arr=${encodeURIComponent(
  546. _arr
  547. )}&taskId=${taskId}&isOutsource=1`;
  548. uni.navigateTo({
  549. url,
  550. });
  551. }
  552. },
  553. produce() {
  554. produceDetail(this.id).then((res) => {
  555. this.produceList = res.produceDetail;
  556. });
  557. },
  558. handleDetails() {
  559. let taskId = this.currentTaskId || this.taskId;
  560. let taskName = this.currentTaskName || this.info.taskName;
  561. let url = "/pages/pda/workOrder/index/details";
  562. url += `?id=${this.info.id}&taskId=${taskId}&taskName=${taskName}&taskType=${this.currentType}`;
  563. uni.navigateTo({
  564. url,
  565. });
  566. },
  567. handleFeedDetails() {
  568. let taskId = this.currentTaskId || this.taskId;
  569. let url = "/pages/pda/feeding/bill/index";
  570. url += `?id=${this.info.id}&taskId=${taskId}`;
  571. uni.navigateTo({
  572. url,
  573. });
  574. },
  575. handDetails(item) {
  576. if (this.clientEnvironmentId == 2) {
  577. if (item.firstTaskDetails.length > 0) {
  578. this.$refs.productionDetailedRef.open(item);
  579. } else {
  580. uni.showToast({
  581. title: "暂无明细",
  582. icon: "none",
  583. });
  584. }
  585. }
  586. },
  587. },
  588. };
  589. </script>
  590. <style lang="scss" scoped>
  591. .content-box {
  592. height: 100vh;
  593. overflow: hidden;
  594. display: flex;
  595. flex-direction: column;
  596. background-color: $page-bg;
  597. }
  598. .top-wrapper {
  599. background-color: #fff;
  600. display: flex;
  601. width: 750rpx;
  602. background: #fff;
  603. align-items: center;
  604. }
  605. .tab_box {
  606. width: 100%;
  607. height: 68rpx;
  608. .tab_item {
  609. height: 68rpx;
  610. line-height: 68rpx;
  611. padding: 0 20rpx;
  612. font-size: 32rpx;
  613. color: #979c9e;
  614. }
  615. .active {
  616. box-sizing: border-box;
  617. border-bottom: 6rpx solid $theme-color;
  618. color: $theme-color;
  619. }
  620. }
  621. .list_box {
  622. flex: 1;
  623. overflow: hidden;
  624. padding: 4rpx 0;
  625. .u-list {
  626. height: 100% !important;
  627. }
  628. .item_list {
  629. width: 100%;
  630. height: 80rpx;
  631. box-sizing: border-box;
  632. padding: 0 32rpx;
  633. font-size: 32rpx;
  634. color: #979c9e;
  635. font-weight: 400;
  636. border-bottom: 1rpx solid #e3e5e5;
  637. .lable {
  638. color: #090a0a;
  639. font-weight: 500;
  640. }
  641. }
  642. .detail-list {
  643. line-height: 80rpx;
  644. .name {
  645. color: #090a0a;
  646. font-size: 32rpx;
  647. font-weight: 600;
  648. padding: 0 32rpx;
  649. box-sizing: border-box;
  650. border-bottom: 1rpx solid #e3e5e5;
  651. }
  652. .list {
  653. padding: 0 32rpx;
  654. box-sizing: border-box;
  655. border-bottom: 1rpx solid #e3e5e5;
  656. .title {
  657. font-weight: 400;
  658. color: #090a0a;
  659. }
  660. .icon {
  661. width: 36rpx;
  662. height: 36rpx;
  663. margin-right: 8rpx;
  664. }
  665. .arrow_right2 {
  666. width: 12rpx;
  667. height: 24rpx;
  668. margin-left: 8rpx;
  669. }
  670. }
  671. }
  672. }
  673. .bottom-wrapper {
  674. }
  675. .search_btn {
  676. width: 240rpx;
  677. height: 70rpx;
  678. line-height: 70rpx;
  679. padding: 0 24rpx;
  680. background: $theme-color;
  681. font-size: 32rpx;
  682. color: #fff;
  683. margin: 0;
  684. margin-left: 26rpx;
  685. }
  686. </style>