perfectStore.vue 24 KB

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