| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- <template>
- <div class="perfectStoreTSJ">
- <van-nav-bar class="navBar" title="AI 调色机识别" left-arrow @click-left="onClickLeft" />
- <div class="content">
- <div class="contentBox" v-for="val in tiaoSJArr">
- <div class="deviceCode">
- <div class="vertical"></div>
- <div class="codeData">
- <p style="margin: 13px 0">设备编号:{{ val.deviceCode || '' }}</p>
- <p style="margin: 13px 0">投放编号:{{ val.putInCode || '' }}</p>
- </div>
- </div>
- <div class="shopSign specialTask" v-if="val && val.qualifiedState">
- <div class="specialTaskLeft">
- <div class="SignText">识别结果:</div>
- <div class="signContent">
- <div class="icon">
- <van-icon name="checked" color="#07c160" v-if="val.qualifiedState == '1'" />
- <van-icon name="warning" color="#ee0a24" v-else />
- </div>
- <div :style="{ color: val.qualifiedState == '1' ? '#07c160' : '#ee0a24' }">
- {{ val.qualifiedState == '1' ? '调色机完整,投放号正确' : val.unqualifiedReason }}
- </div>
- </div>
- <div class="shopSignButton">
- <div class="" style="display: flex">
- <van-button round type="primary" v-if="val.qualifiedState == '1'">通过</van-button>
- <van-button round type="danger" v-else>不通过</van-button>
- </div>
- </div>
- </div>
- </div>
- <div
- class="container containert"
- style="width: 100%; margin: 0 auto; padding-bottom: 10px"
- v-if="val.collectionItemList.length">
- <van-form ref="tabstoreVal">
- <div v-for="(item, index) in val.collectionItemList" :key="index">
- <div v-if="item.answerType == 'tel_send_code'" class="formLabel z-cell z-cells">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div class="selesetText">
- <p class="mg0">{{ item.answerValue }}</p>
- </div>
- </div>
- <div v-if="item.answerType == 'nyr'" class="formLabel z-cell z-cells">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div class="selesetText">
- <p class="mg0">{{ item.answerValue }}</p>
- </div>
- </div>
- <div class="formLabel z-cell z-cells" v-if="item.answerType == 'sz'">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <p class="mg0">{{ item.answerValue }}</p>
- <p
- style="
- color: #444;
- font-size: 12px;
- margin: 0;
- padding: 10px 0;
- text-align: right;
- ">
- <van-field
- class="mobile-input"
- v-model="item.collectionOptionList[0].collectionOption"
- autosize
- readonly
- type="textarea" />
- </p>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- <div class="formLabel z-cell z-cells" v-if="item.answerType == 'zp'">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- <div
- class="formLabel z-cell z-cells"
- v-if="item.answerType == 'wb' || item.answerType == 'dhwb'">
- <van-cell>
- <template #title>
- {{ index + 1 }}.{{ item.collectionName }}
- <span
- style="color: #00afff; position: absolute; top: 8px; right: 0px"
- v-if="item.showHistory == 1"
- @click="getCollectionShowHistory(item)"
- >回显历史</span
- >
- </template>
- </van-cell>
- <div class="selesetText">
- <p class="mg0">{{ item.answerValue }}</p>
- </div>
- <p style="color: #444; font-size: 12px; margin: 0; text-align: right">
- <van-field
- class="mobile-input"
- v-model="item.collectionOptionList[0].collectionOption"
- autosize
- readonly
- type="textarea" />
- </p>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- <div class="formLabel z-cell z-cells" v-if="item.answerType == 'tel'">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div class="selesetText">
- <p class="mg0">{{ item.answerValue }}</p>
- </div>
- <p style="color: #444; font-size: 12px; margin: 0; text-align: right">
- <van-field
- class="mobile-input"
- v-model="item.collectionOptionList[0].collectionOption"
- autosize
- readonly
- type="textarea" />
- </p>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- <div class="formLabel z-cell z-cells" v-if="item.answerType == 'date'">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div class="selesetText">
- <p class="mg0">{{ item.answerValue }}</p>
- </div>
- <p style="color: #444; font-size: 12px; margin: 0; text-align: right">
- <van-field
- class="mobile-input"
- v-model="item.collectionOptionList[0].collectionOption"
- autosize
- readonly
- type="textarea" />
- </p>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- <div class="formLabel z-cell z-cells" v-if="item.answerType == 'sm'">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div class="selesetText">
- <div style="font-size: 14px" v-if="item.collectionOptionList[0].answerValue">
- <div v-if="item.success" style="color: green">
- <p>系统资产编码:{{ item.equipmentCode1 }}</p>
- <p> 条形码编码:{{ item.equipmentCode2 }}</p>
- <span style="float: right; margin-top: -48px"
- ><van-icon name="passed" size="16" /> 一致</span
- >
- </div>
- <div v-if="!item.success" style="color: red">
- <p>系统资产编码:{{ item.equipmentCode1 }}</p>
- <p> 条形码编码:{{ item.equipmentCode2 }}</p>
- <span style="float: right; margin-top: -48px"
- ><van-icon name="close" size="16" /> 不一致</span
- >
- </div>
- </div>
- </div>
- <p
- style="color: #444; font-size: 12px; margin: 0; text-align: right"
- v-if="item.collectionOptionList[0].collectionOption">
- <van-field
- class="mobile-input"
- v-model="item.collectionOptionList[0].collectionOption"
- autosize
- readonly
- type="textarea" />
- </p>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- <div class="formLabel z-cell z-cells" v-if="item.answerType == 'duox'">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div class="selesetText">
- <p class="mg0" v-for="(item1, index1) in item.collectionOptionList" :key="index1">
- <span v-if="item1.isCheck == 1">{{ item1.collectionOption }}</span>
- </p>
- </div>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- <div class="formLabel z-cell z-cells" v-if="item.answerType == 'dx'">
- <van-cell>
- <template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
- </van-cell>
- <div class="selesetText">
- <p class="mg0" v-for="(item2, index2) in item.collectionOptionList" :key="index2">
- <span v-if="item2.isCheck == 1">{{ item2.collectionOption }}</span>
- </p>
- </div>
- <div v-if="item.fileInfoList" class="imgBox">
- <img
- v-for="value in item.fileInfoList"
- :src="value.fileUrl"
- @click="previewsImg(item.fileInfoList)" />
- </div>
- </div>
- </div>
- </van-form>
- </div>
- <!-- <div class="shopSignImg">
- <div class="text">店招照片</div>
- <div class="imgBox">
- <img
- v-if="val && val.qualifiedState"
- :src="val.fileUrl"
- @click="previewsImg(val.fileUrl)" />
- </div>
- </div> -->
- </div>
- </div>
- </div>
- </template>
- <script>
- import deleteUploadImg from '@/components/deleteUploadImg';
- import { getVisitsDetailPerfectStore } from '@/api/index';
- import { ImagePreview } from 'vant';
- export default {
- name: 'perfectStoreTSJ',
- components: { deleteUploadImg },
- data() {
- return {
- visitsId: '',
- detail: null,
- tiaoSJArr: null,
- // collectionItemList: [],
- };
- },
- activated() {
- this.visitsId = this.$route.query.visitId || '';
- this.detail = null;
- this.getVisitsDetailFn();
- },
- methods: {
- getVisitsDetailFn() {
- this.toastLoading(0, '加载中...', true);
- this.tiaoSJArr = null;
- // this.collectionItemList = [];
- getVisitsDetailPerfectStore({ visitsId: this.visitsId })
- .then((res) => {
- this.toastLoading().clear();
- if (res.code == 200) {
- this.detail = res.data;
- this.tiaoSJArr = this.detail.sfaTaskList.filter((val) => val.photoIdentifyType == '3');
- console.log(this.tiaoSJArr);
- for (let i = 0; i < this.tiaoSJArr.length; i++) {
- this.filterCollectionItemLists(this.tiaoSJArr[i].collectionItemList);
- }
- } else {
- this.$dialog.alert({
- message: res.msg,
- });
- }
- })
- .catch((err) => {
- this.$dialog.alert({
- message: err.msg,
- });
- });
- },
- filterCollectionItemLists(item) {
- for (let q = 0; q < item.length; q++) {
- if (
- item[q].answerType == 'sz' ||
- item[q].answerType == 'wb' ||
- item[q].answerType == 'tel' ||
- item[q].answerType == 'date' ||
- item[q].answerType == 'tel_send_code' ||
- item[q].answerType == 'check_code' ||
- item[q].answerType == 'nyr' ||
- item[q].answerType == 'dhwb'
- ) {
- item[q].answerValue = item[q].collectionOptionList[0].answerValue;
- }
- if (item[q].answerType == 'sm') {
- item[q].success = false;
- if (
- item[q].collectionOptionList[0].answerValue != null &&
- item[q].collectionOptionList[0].answerValue != ''
- ) {
- item[q].equipmentCode2 = item[q].collectionOptionList[0].answerValue.split(',')[1];
- if (item[q].collectionOptionList[0].answerValue.split(',')[0] != 'null') {
- item[q].equipmentCode1 = item[q].collectionOptionList[0].answerValue.split(',')[0];
- } else {
- item[q].equipmentCode1 = '编码不存在';
- }
- if (
- item[q].collectionOptionList[0].answerValue.split(',')[0] ==
- item[q].collectionOptionList[0].answerValue.split(',')[1]
- ) {
- item[q].success = true;
- }
- }
- }
- if (item[q].answerType == 'duox' || item[q].answerType == 'dx') {
- item[q].answerValue = [];
- if (item[q].collectionOptionList.length) {
- for (var qq = 0; qq < item[q].collectionOptionList.length; qq++) {
- if (item[q].collectionOptionList[qq].isCheck == 1) {
- item[q].answerValue.push(item[q].collectionOptionList[qq].collectionOptionId);
- item[q].collectionOptionList[qq].code = item[q].collectionCode;
- item[q].collectionOptionList[qq].answerType = item[q].answerType;
- }
- }
- item[q].answerValue = item[q].answerValue.join();
- }
- }
- }
- },
- previewsImg(fileInfoList) {
- var arrimg = [];
- for (var imgi = 0; imgi < fileInfoList.length; imgi++) {
- arrimg.push(fileInfoList[imgi].fileUrl);
- }
- ImagePreview(arrimg);
- },
- onClickLeft() {
- this.$router.go(-1);
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .perfectStoreTSJ {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- .content {
- flex: 1;
- overflow-y: auto;
- padding: 10px 15px;
- .contentBox {
- width: 100%;
- margin-top: 10px;
- .deviceCode {
- font-size: 16px;
- background-color: white;
- border-radius: 5px;
- position: relative;
- overflow: hidden;
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-bottom: 10px;
- // padding: 3px 0;
- }
- .vertical {
- background-color: rgb(25, 137, 250);
- height: 14px;
- width: 8px;
- border-radius: 40px;
- margin-right: 10px;
- }
- .container {
- background: #fff;
- }
- }
- // ///////
- .specialTask {
- display: flex;
- flex-direction: row;
- padding: 10px;
- font-size: 16px;
- justify-content: space-between;
- background: #e5faff;
- .specialTaskLeft {
- display: flex;
- flex-direction: row;
- width: 100%;
- }
- .SignText {
- width: 80px;
- font-weight: 600;
- }
- .signContent {
- flex: 1;
- display: flex;
- flex-direction: row;
- margin: 0 8px;
- .icon {
- padding-top: 2px;
- margin-right: 5px;
- }
- }
- }
- .shopSignButton {
- width: 56px;
- button {
- width: 55px;
- height: 28px;
- padding: 0;
- font-size: 12px;
- }
- }
- .shopSignImg {
- .text {
- font-size: 16px;
- font-weight: 600;
- padding: 15px 10px;
- }
- }
- }
- .imgBox {
- width: 100%;
- text-align: center;
- img {
- width: 60%;
- }
- }
- }
- </style>
- <style lang="scss">
- .perfectStoreTSJ {
- .van-button--danger {
- background-color: #ee0a24 !important;
- border: 1px solid #ee0a24 !important;
- }
- .formLabel {
- margin: 0 16px;
- // padding-bottom: 16px;
- border-bottom: 1px solid #f1f1f1;
- }
- .formLabel .van-cell {
- padding: 5px 0;
- }
- .formLabel .van-cell::after {
- border: 0;
- }
- .formLabel .van-field {
- border: 1px solid #f1f1f1;
- padding: 6px;
- width: 100%;
- border-radius: 4px;
- overflow: hidden;
- }
- .formLabel .van-field__control {
- padding: 0 10px;
- }
- .formLabel .formLabeltitle {
- position: absolute;
- top: 8px;
- }
- }
- </style>
|