perfectStore.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751
  1. <template>
  2. <div class="perfectStore">
  3. <!-- 顶部条-->
  4. <van-nav-bar class="navBar" title="完美门店报告" left-arrow @click-left="onClickLeft">
  5. <template #right>
  6. <!-- <span
  7. style="
  8. color: white;
  9. background: #74a4d9;
  10. display: block;
  11. padding: 6px 10px;
  12. border-radius: 6px;
  13. "
  14. @click="editorFn"
  15. v-if="!remarkShow && sameDay"
  16. >编辑</span> -->
  17. </template>
  18. </van-nav-bar>
  19. <!-- 主体内容-->
  20. <div class="container" v-if="list">
  21. <div class="lineGrey"></div>
  22. <div class="card mt10">
  23. <div class="title">
  24. {{ list.storeName }}(<span style="color: #1989fa">{{ list.storeCode }}</span
  25. >)
  26. </div>
  27. <div class="subtitle">地址:{{ list.addressLine }}</div>
  28. <div class="subtitle">拜访人:{{ list.nickName }}</div>
  29. <div class="subtitle">拜访日期:{{ list.startTime }}~{{ list.stopTime }}</div>
  30. <div class="subtitle" v-if="list.dwellTime">拜访时长:{{ list.dwellTime }}</div>
  31. <!-- 分销店 -->
  32. <template
  33. v-if="
  34. verifyStoreType(list.storeCategory) && verifyStoreType(list.storeCategory).type == 'fxd'
  35. ">
  36. <div class="subtitle" style="display: flex">
  37. <div class="label" style="width: 75px">经销商:</div>
  38. <div class="valuue TCFXList">
  39. <div
  40. class="sfaStoreChainsContactList"
  41. v-for="(item, index) in list.sfaStoreChainsContactList"
  42. :key="index">
  43. {{ item.categoryDescribe }}
  44. {{ item.chainCode }}
  45. {{ item.chainName }}
  46. </div>
  47. </div>
  48. </div>
  49. </template>
  50. <template v-else>
  51. <div class="subtitle">经销商:{{ list.chainName }}</div>
  52. </template>
  53. <div class="subtitle" v-if="updateTimeShow">更新时间:{{ list.updateTime }}</div>
  54. </div>
  55. <!-- <p
  56. style="padding: 0 10px; font-size: 14px; color: #222; font-weight: bold"
  57. v-if="list.visitSource != 2 && ListHistoryList.length > 0">
  58. 审批历史
  59. </p> -->
  60. <!-- <div
  61. v-for="(item1, index1) in ListHistoryList"
  62. :key="index1"
  63. style="background-color: white; padding-top: 14px">
  64. <p style="padding: 0 16px; font-size: 14px; color: #222; margin: 0">
  65. 流程名称:{{ item1.modelName }}
  66. </p>
  67. <van-steps direction="vertical" :active="item1.processList.length">
  68. <van-step v-for="(item, index) in item1.processList" :key="index">
  69. <h3 style="font-size: 14px">{{ item.activityName }} &nbsp;{{ item.assigneeName }}</h3>
  70. <p>{{ item.comment }}</p>
  71. </van-step>
  72. </van-steps>
  73. <div style="border-bottom: 2px solid #f5f5f5; margin: 0 16px 16px"></div>
  74. </div> -->
  75. <!-- <van-collapse
  76. v-model="active"
  77. class="fontWeit"
  78. v-if="managerRemarkContents != null && managerRemarkContents.length > 0">
  79. <van-collapse-item name="1" title="点评">
  80. <p>
  81. {{ managerRemarkContents[0].deptName }} - {{ managerRemarkContents[0].postName }} -
  82. {{ managerRemarkContents[0].nickName }}的点评
  83. </p>
  84. <p class="contern">
  85. <van-field
  86. v-model="managerRemarkContents[0].remarkContent"
  87. rows="4"
  88. autosize
  89. readonly
  90. type="textarea" />
  91. </p>
  92. <p style="text-align: right">点评时间:{{ managerRemarkContents[0].createTime }}</p>
  93. </van-collapse-item>
  94. </van-collapse> -->
  95. <!-- <template v-if="list.isSku == '是'">
  96. <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">SKU图像识别结果</div>
  97. <div class="card">
  98. <div
  99. class="info"
  100. @click="toSkuRecognize"
  101. style="
  102. display: flex;
  103. align-items: center;
  104. justify-content: space-between;
  105. padding: 3px;
  106. ">
  107. <p
  108. style="flex: 1; margin: 0; line-height: 24px; padding: 10px 0; display: inline-block">
  109. 拍摄的所有产品陈列照识别结果:<span v-if="list.skuTotal" style="color: red"
  110. >{{ list.skuTotal }}个</span
  111. >
  112. </p>
  113. <p class="arrowdetils1">
  114. <van-icon name="arrow" />
  115. </p>
  116. </div>
  117. </div>
  118. </template> -->
  119. <!-- 特殊任务展示 -->
  120. <!-- 店招 -->
  121. <div class="shopSign specialTask" v-if="shopSignDetail">
  122. <div class="specialTaskLeft">
  123. <div class="SignText">店招:</div>
  124. <div class="signContent">
  125. <div class="icon">
  126. <van-icon
  127. name="checked"
  128. color="#07c160"
  129. v-if="shopSignDetail.qualifiedState == '1'" />
  130. <van-icon name="warning" color="#ee0a24" v-else />
  131. </div>
  132. <div
  133. class="content"
  134. :style="{ color: shopSignDetail.qualifiedState == '1' ? '#07c160' : '#ee0a24' }">
  135. {{
  136. shopSignDetail.qualifiedState == '1' ? '已通过' : shopSignDetail.unqualifiedReason
  137. }}
  138. </div>
  139. </div>
  140. </div>
  141. <div class="shopSignImg">
  142. <img :src="shopSignDetail.fileUrl" @click="previewsImg(shopSignDetail.fileUrl)" />
  143. </div>
  144. </div>
  145. <!-- 调色机 -->
  146. <div class="TSJBox specialTask" v-if="tiaoSJDetail">
  147. <div class="specialTaskLeft">
  148. <div class="SignText">调色机:</div>
  149. <div class="signContent">
  150. <div class="icon">
  151. <van-icon name="checked" color="#07c160" v-if="tiaoSJDetail.qualifiedState == '1'" />
  152. <van-icon name="warning" color="#ee0a24" v-else />
  153. </div>
  154. <div
  155. v-if="tiaoSJDetail.qualifiedState"
  156. class="content"
  157. :style="{ color: tiaoSJDetail.qualifiedState == '1' ? '#07c160' : '#ee0a24' }">
  158. {{ tiaoSJDetail.qualifiedState == '1' ? '已通过' : tiaoSJDetail.unqualifiedReason }}
  159. </div>
  160. </div>
  161. </div>
  162. <div class="shopSignImg" v-if="tiaoSJDetail.qualifiedState">
  163. <img :src="tiaoSJDetail.fileUrl" @click="previewsImg(tiaoSJDetail.fileUrl)" />
  164. </div>
  165. </div>
  166. <div class="SKUBox">
  167. <div class="SKUTotal" @click="toSkuRecognize" v-if="list.isSku == '是'">
  168. <p style="flex: 1; margin: 0; line-height: 24px; padding: 10px 0; display: inline-block">
  169. 陈列SKU个数:<span v-if="list.skuTotal" style="color: #000">{{ list.skuTotal }}个</span>
  170. </p>
  171. <p class="arrowdetils1">
  172. 查看详情
  173. <van-icon name="arrow" />
  174. </p>
  175. </div>
  176. <div class="SKUList">
  177. <div class="SKUListTitle">目前陈列任务:</div>
  178. <div
  179. class="itemList"
  180. v-for="(value, index) in taskTypeArr"
  181. @click="historiStoreVisit(value)">
  182. <div class="itemTitle">
  183. {{ convertToChinese(index + 1) }}、{{ value.taskName }} <van-icon name="arrow" />
  184. </div>
  185. <!-- <div class="jiantou">
  186. <van-icon name="arrow" />
  187. </div> -->
  188. <div class="">
  189. <van-icon name="success" color="#07c160" v-if="value.taskPhotoConditionPassed == 1" />
  190. <van-icon name="cross" color="#ee0a24" v-else />
  191. </div>
  192. </div>
  193. </div>
  194. </div>
  195. <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">任务</div>
  196. <div class="card" v-if="list.visitSource != 2">
  197. <div
  198. class="info"
  199. style="
  200. font-size: 14px;
  201. display: flex;
  202. align-items: center;
  203. justify-content: space-between;
  204. padding: 3px;
  205. "
  206. v-for="(item, index) in list.sfaTaskList"
  207. :key="index"
  208. v-if="
  209. item.photoIdentifyType != '1' && item.photoIdentifyType != '3' && item.taskType != '5'
  210. "
  211. @click="historiStoreVisit(item, index)">
  212. <p style="flex: 1; margin: 0">
  213. {{ item.taskName }}
  214. </p>
  215. <div class="taskPhotoConditionPassed" @click.stop>
  216. <el-popover
  217. :popper-class="item.taskPhotoConditionPassed == 1 ? 'zpoverSuccess' : 'zpover'"
  218. placement="bottom"
  219. width="120"
  220. trigger="click"
  221. :content="
  222. item.taskPhotoConditionPassed == 1
  223. ? '陈列奖励案拍照AI识别通过'
  224. : '陈列奖励案拍照AI识别不通过'
  225. ">
  226. <div class="taskPhotoConditionPassed" slot="reference">
  227. <img
  228. v-if="item.taskPhotoConditionPassed == 1"
  229. :src="require('@/assets/taskPhotoSu.png')" />
  230. <img
  231. v-if="item.taskPhotoConditionPassed == 0"
  232. :src="require('@/assets/taskPhotoErr.png')" />
  233. </div>
  234. </el-popover>
  235. </div>
  236. <p class="arrowdetils1">
  237. <van-icon name="arrow" />
  238. </p>
  239. </div>
  240. </div>
  241. <!-- <div v-if="list.visitSource == 2" style="background-color: #fff">
  242. <van-cell title="异常事由" :value="selectDictLabel(typeList, list.abnormalReason)" />
  243. <van-cell title="异常信息照" />
  244. <div style="padding: 10px 16px 0">
  245. <delete-upload-img :imgs="imgs"></delete-upload-img>
  246. </div>
  247. <van-cell title="异常信息" :value="list.remark" />
  248. </div> -->
  249. <!-- <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">更多记录</div>
  250. <van-cell-group>
  251. <van-cell v-for="(item1, index1) in list.visitsMore" :key="index1">
  252. <template #title>
  253. <van-row>
  254. <van-col span="6">拜访人:</van-col>
  255. <van-col span="18" class="custom-titles">{{ item1.userName }}</van-col>
  256. </van-row>
  257. </template>
  258. <template #right-icon>
  259. <span>{{ item1.visitTime }}</span>
  260. </template>
  261. </van-cell>
  262. </van-cell-group> -->
  263. <!-- 业务员拜访记录回显部主管反馈内容 -->
  264. <!-- <template v-if="list.sfaPhotoApproveList && list.sfaPhotoApproveList.length">
  265. <div
  266. class="sfaPhotoApproveList"
  267. v-for="(item, index) in list.sfaPhotoApproveList"
  268. :key="item.identifyType">
  269. <template v-if="item.identifyType == 1 || item.identifyType == 3">
  270. <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">
  271. {{ filterTitle(item.identifyType) }}
  272. </div>
  273. <template v-if="item.historyFeedback == '0'">
  274. <van-cell-group>
  275. <van-cell> AI识别结果: {{ item.resultCorrect == 1 ? '正确' : '不正确' }} </van-cell>
  276. <van-cell>
  277. 拜访照异常原因及解决方案: {{ item.feedbackError || item.reasonsSolutions }}
  278. </van-cell>
  279. </van-cell-group>
  280. </template>
  281. <template v-if="item.historyFeedback == '1'">
  282. <van-cell-group>
  283. <van-cell v-if="item.identifyType == 1">
  284. 店招异常原因: {{ resultCorrect(item.resultCorrect) }}
  285. </van-cell>
  286. <van-cell> 反馈: {{ item.feedbackError || item.reasonsSolutions }} </van-cell>
  287. </van-cell-group>
  288. </template>
  289. </template>
  290. </div>
  291. </template>
  292. <div
  293. style="padding: 10px 16px; font-size: 16px; font-weight: bold"
  294. v-if="managerRemarkContents == null && remarkShow">
  295. 点评
  296. </div>
  297. <div class="comment" v-if="managerRemarkContents == null && remarkShow">
  298. <van-field
  299. v-model="dataform.remarkContent"
  300. rows="4"
  301. autosize
  302. maxlength="800"
  303. show-word-limit
  304. type="textarea"
  305. :formatter="formatter" />
  306. <br />
  307. <br />
  308. <div class="contentborder">
  309. <van-button type="info" size="small" plain class="Btn1" @click="submint"
  310. >提交点评</van-button
  311. >
  312. </div>
  313. </div> -->
  314. </div>
  315. </div>
  316. </template>
  317. <script>
  318. import deleteUploadImg from '@/components/deleteUploadImg';
  319. import {
  320. getVisitsDetailPerfectStore,
  321. getPhotoTypeList1,
  322. insertVisitRemark,
  323. getListHistoryList,
  324. } from '@/api/index';
  325. import { getDictOption } from '@/api/index';
  326. import { ImagePreview } from 'vant';
  327. export default {
  328. components: { deleteUploadImg },
  329. data() {
  330. return {
  331. userShow: false,
  332. visitsId: '',
  333. imgs: '',
  334. typeList: [],
  335. active: ['1'],
  336. sameDay: false,
  337. ListHistoryTOTLE: '',
  338. managerRemarkContents: null,
  339. managerRemarkContent: '',
  340. CWShow: false,
  341. dataform: {
  342. remarkContent: '',
  343. visitsId: 0,
  344. },
  345. updateTimeShow: false,
  346. insert: true,
  347. remarkShow: false,
  348. ListHistoryList: [],
  349. list: null,
  350. AIResultOption: [],
  351. shopSignDetail: null,
  352. tiaoSJDetail: null,
  353. taskTypeArr: null,
  354. };
  355. },
  356. activated() {
  357. this.list = null;
  358. this.toastLoading(0, '加载中...', true);
  359. this.visitsId = this.$route.query.visitId;
  360. this.dataform.visitsId = this.$route.query.visitId;
  361. this.getVisitsDetailFn();
  362. // 获取店招异常原因字典
  363. getDictOption({}, 'feedback_error_msg').then((res) => {
  364. this.AIResultOption = res.data;
  365. });
  366. this.getPhotoTypeList();
  367. },
  368. methods: {
  369. resultCorrect(resultCorrect) {
  370. let data = this.AIResultOption.find((item) => item.dictValue == resultCorrect);
  371. return data ? data.dictLabel : '';
  372. },
  373. filterTitle(item) {
  374. switch (item) {
  375. case 1:
  376. return '店招识别异常,主管反馈:';
  377. // case '2':
  378. // return '门店代码识别';
  379. case 3:
  380. return '调色机识别异常,主管反馈:';
  381. // case '4':
  382. // return '更换店招';
  383. }
  384. },
  385. getListHistoryList(instanceId) {
  386. var form = { visitsId: this.$route.query.visitId, pageNum: 1, pageSize: 999 };
  387. getListHistoryList(form).then((res) => {
  388. this.ListHistoryList = res.data;
  389. });
  390. },
  391. formatter(value) {
  392. return value.replace(
  393. /[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF][\u200D|\uFE0F]|[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF]|[0-9|*|#]\uFE0F\u20E3|[0-9|#]\u20E3|[\u203C-\u3299]\uFE0F\u200D|[\u203C-\u3299]\uFE0F|[\u2122-\u2B55]|\u303D|[\A9|\AE]\u3030|\uA9|\uAE|\u3030/gi,
  394. '',
  395. );
  396. },
  397. editorFn() {
  398. if (this.list.hideStr != '' && this.list.hideStr != null) {
  399. this.$toast(this.list.hideStr);
  400. } else {
  401. localStorage.setItem('ORGName', this.list.deptName);
  402. localStorage.setItem('chainNameR', this.list.storeName);
  403. if (this.list.visitSource == '2') {
  404. this.$router.push({
  405. path: '/abnormalVisit',
  406. query: {
  407. type: 'edit',
  408. storeCode: this.$route.query.storeCode || this.list.storeCode,
  409. rdId: this.$route.query.visitId,
  410. visitId: this.$route.query.visitId,
  411. storeId: this.list.storeId,
  412. visitSource: this.list.visitSource,
  413. visitModel: this.list.visitModel,
  414. marklat: this.list.lat,
  415. marklon: this.list.lon,
  416. },
  417. });
  418. } else {
  419. var LCshow = false;
  420. if (this.$route.query.taskId != null) {
  421. LCshow = true;
  422. } else {
  423. LCshow = false;
  424. }
  425. this.$router.push({
  426. path: '/storeVisitpage',
  427. query: {
  428. type: 'edit',
  429. storeGroupId: this.list.storeGroupId,
  430. storeCode: this.$route.query.storeCode || this.list.storeCode,
  431. storeName: this.list.storeName,
  432. addressLine: this.list.addressLine,
  433. rdId: this.$route.query.visitId,
  434. visitId: this.$route.query.visitId,
  435. storeId: this.list.storeId,
  436. visitSource: this.list.visitSource,
  437. visitModel: this.list.visitModel,
  438. LCshow: LCshow,
  439. instanceId: this.list.instanceId,
  440. taskId: this.$route.query.taskId,
  441. marklat: this.list.lat,
  442. marklon: this.list.lon,
  443. from: 'outPlan',
  444. },
  445. });
  446. }
  447. }
  448. },
  449. submint() {
  450. if (this.dataform.remarkContent.trim() == '') {
  451. this.$toast('请填写点评内容!');
  452. } else {
  453. insertVisitRemark(this.dataform).then((res) => {
  454. if (res.code == 200) {
  455. this.getVisitsDetailFn();
  456. }
  457. });
  458. }
  459. },
  460. getPhotoTypeList() {
  461. getPhotoTypeList1({}).then((res) => {
  462. this.typeList = res.data;
  463. });
  464. },
  465. getVisitsDetailFn() {
  466. this.shopSignDetail = null;
  467. this.tiaoSJDetail = null;
  468. this.taskTypeArr = null;
  469. getVisitsDetailPerfectStore({ visitsId: this.$route.query.visitId }).then((res) => {
  470. this.toastLoading().clear();
  471. if (res.code == 200) {
  472. this.list = res.data;
  473. this.filterSfaTaskList(this.list.sfaTaskList);
  474. let shopSignArr = this.list.sfaTaskList.filter((val) => val.photoIdentifyType == '1');
  475. if (shopSignArr.length) this.shopSignDetail = shopSignArr[0];
  476. let tiaoSJArr = this.list.sfaTaskList.filter((val) => val.photoIdentifyType == '3');
  477. if (tiaoSJArr.length) {
  478. this.tiaoSJDetail = tiaoSJArr[0];
  479. console.log(this.tiaoSJDetail);
  480. }
  481. if (res.data.visitSource != 2) {
  482. this.getListHistoryList(res.data.instanceId);
  483. }
  484. if (res.data.stopTime != res.data.updateTime) {
  485. this.updateTimeShow = true;
  486. } else {
  487. this.updateTimeShow = false;
  488. }
  489. if (localStorage.getItem('userId') == this.$route.query.userId) {
  490. this.userShow = true;
  491. } else {
  492. this.userShow = false;
  493. }
  494. if (this.$route.query.taskId != null) {
  495. this.CWShow = true;
  496. } else {
  497. this.CWShow = false;
  498. }
  499. this.sameDay = res.data.sameDay;
  500. if (localStorage.getItem('userId') == res.data.userId) {
  501. this.remarkShow = false;
  502. } else {
  503. this.remarkShow = true;
  504. }
  505. if (res.data.visitRemarks != null) {
  506. if (res.data.visitRemarks.length > 0) {
  507. this.managerRemarkContents = res.data.visitRemarks;
  508. } else {
  509. this.managerRemarkContents = null;
  510. }
  511. }
  512. if (res.data.visitSource == 2) {
  513. this.imgs = res.data.sysFileInfos;
  514. }
  515. } else {
  516. this.$toast.fail(res.msg);
  517. }
  518. });
  519. },
  520. filterSfaTaskList(list) {
  521. this.taskTypeArr = list.filter((val) => val.taskType == '5');
  522. },
  523. historiStoreVisit(val, index) {
  524. if (val.taskType == '5') {
  525. this.$router.push({
  526. path: '/perfectStoreTask',
  527. query: {
  528. storeCode: this.$route.query.storeCode || this.list.storeCode,
  529. visitsId: this.visitsId,
  530. taskId: val.taskId,
  531. storeGroupId: this.list.storeGroupId,
  532. insert: 0,
  533. source: 'historicalDetails',
  534. },
  535. });
  536. } else {
  537. this.$router.push({
  538. path: '/historiStoreVisit',
  539. query: { visitId: this.visitsId, ids: index, taskType: val.taskType, taskId: val.taskId },
  540. });
  541. }
  542. sessionStorage.setItem('collectionItemList', JSON.stringify(val.collectionItemList));
  543. },
  544. toSkuRecognize() {
  545. this.$router.push({
  546. path: '/perfectStoreSku',
  547. query: { visitId: this.visitsId },
  548. });
  549. },
  550. onClickLeft() {
  551. if (this.$route.query.token) {
  552. this.$router.push({
  553. path: '/historicalVisit',
  554. });
  555. } else {
  556. this.$router.go(-1);
  557. }
  558. },
  559. previewsImg(url) {
  560. ImagePreview([url]);
  561. },
  562. },
  563. };
  564. </script>
  565. <style lang="scss" scoped>
  566. .perfectStore {
  567. .specialTask {
  568. display: flex;
  569. flex-direction: row;
  570. margin: 5px 10px;
  571. border-radius: 10px;
  572. min-height: 90px;
  573. padding: 10px 20px;
  574. font-size: 16px;
  575. justify-content: space-between;
  576. .specialTaskLeft {
  577. display: flex;
  578. flex-direction: row;
  579. }
  580. .SignText {
  581. color: rgb(25, 137, 250);
  582. width: 55px;
  583. }
  584. .signContent {
  585. display: flex;
  586. flex-direction: row;
  587. margin: 0 8px;
  588. flex: 1;
  589. .icon {
  590. padding-top: 2px;
  591. margin-right: 5px;
  592. }
  593. }
  594. .shopSignImg {
  595. img {
  596. height: 80px;
  597. width: 80px;
  598. }
  599. }
  600. }
  601. .shopSign {
  602. background: #e5faff;
  603. }
  604. .TSJBox {
  605. background: #fff4e4;
  606. margin-top: 20px;
  607. }
  608. .SKUBox {
  609. margin: 5px 10px;
  610. border-radius: 10px;
  611. min-height: 90px;
  612. padding: 10px 20px;
  613. font-size: 16px;
  614. background: #ffecf4;
  615. .SKUTotal {
  616. display: flex;
  617. justify-content: space-between;
  618. width: 100%;
  619. color: rgb(25, 137, 250);
  620. }
  621. .SKUList {
  622. .itemList {
  623. display: flex;
  624. flex-direction: row;
  625. justify-content: space-between;
  626. align-items: center;
  627. padding: 8px 0;
  628. .itemTitle {
  629. flex: 1;
  630. text-decoration: underline;
  631. color: rgb(25, 137, 250);
  632. }
  633. .jiantou {
  634. margin: 0 20px 0 10px;
  635. color: rgb(25, 137, 250);
  636. }
  637. }
  638. }
  639. }
  640. }
  641. .container {
  642. padding-bottom: 50px;
  643. }
  644. .container .custom-titles {
  645. white-space: break-spaces;
  646. }
  647. .card {
  648. background: #fff;
  649. padding: 10px 15px;
  650. box-sizing: border-box;
  651. .title {
  652. line-height: 30px;
  653. font-size: 16px;
  654. font-weight: bold;
  655. color: #333;
  656. }
  657. .subtitle {
  658. line-height: 24px;
  659. font-size: 14px;
  660. color: #7b7b7b;
  661. }
  662. .info {
  663. font-size: 16px;
  664. color: #484848;
  665. line-height: 40px;
  666. border-bottom: 1px solid #dedede;
  667. position: relative;
  668. &:last-child {
  669. border-bottom: 0;
  670. }
  671. .arrow {
  672. float: right;
  673. display: inline-block;
  674. height: 20px;
  675. width: 20px;
  676. line-height: 20px;
  677. text-align: center;
  678. border-radius: 50%;
  679. background: #1989fa;
  680. color: #fff;
  681. font-weight: bold;
  682. font-size: 14px;
  683. margin-top: 9px;
  684. }
  685. .taskPhotoConditionPassed {
  686. width: 33px;
  687. margin: 0 5px;
  688. display: inline-flex;
  689. img {
  690. width: 33px;
  691. height: 25px;
  692. }
  693. }
  694. .arrowdetils1 {
  695. background: #fff;
  696. color: #444;
  697. margin: 0;
  698. margin-left: 5px;
  699. }
  700. }
  701. }
  702. .TCFXList {
  703. .van-field__control--custom {
  704. flex-direction: column;
  705. align-items: self-start;
  706. .TCFXListTreeSelec {
  707. padding: 3px;
  708. }
  709. }
  710. }
  711. </style>
  712. <style lang="scss">
  713. .fontWeit .van-cell__title {
  714. font-weight: bold;
  715. font-size: 16px;
  716. }
  717. .fontWeit .van-cell__title p {
  718. margin: 0;
  719. }
  720. .comment .van-field__control {
  721. background-color: #ebf4ff;
  722. border-radius: 6px;
  723. }
  724. .contern .van-cell {
  725. background-color: #ebf4ff;
  726. border-radius: 6px;
  727. overflow: hidden;
  728. }
  729. .perfectStore {
  730. .card {
  731. .el-popover__reference-wrapper {
  732. display: flex;
  733. }
  734. }
  735. }
  736. .zpoverSuccess {
  737. background-color: #28e978 !important;
  738. color: #fff !important;
  739. padding: 8px 10px !important;
  740. z-index: 1 !important;
  741. border-radius: 6px !important;
  742. border: 0 !important;
  743. box-shadow: none !important;
  744. }
  745. </style>