perfectStore.vue 24 KB

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