PerfectStore.vue 23 KB

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