问题件逻辑处理

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2024-01-16 14:47:57 +08:00
parent 0458fd5dd0
commit b42a31b810

View File

@@ -113,13 +113,13 @@
</div> </div>
</template> </template>
<script> <script>
import { Uploader, Checkbox, Field, Radio, RadioGroup, Popup, Overlay, Dialog } from 'vant' import { Uploader, Checkbox, Field, Radio, RadioGroup, Popup, Overlay, Dialog } from 'vant'
import { getBankList, uploadImg } from '@/api/ebiz/sale/sale' import { getBankList, uploadImg } from '@/api/ebiz/sale/sale'
import { getQuestionDetail, updateQuestionDetail } from '@/api/ebiz/questions' import { getQuestionDetail, updateQuestionDetail } from '@/api/ebiz/questions'
import BankCardScan from '@/components/ebiz/sale/BankCardScan' import BankCardScan from '@/components/ebiz/sale/BankCardScan'
import ShortMessage from '@/components/ebiz/question/ShortMessage.vue' import ShortMessage from '@/components/ebiz/question/ShortMessage.vue'
import config from '@/config' import config from '@/config'
export default { export default {
name: 'QuestionsDetail', name: 'QuestionsDetail',
components: { components: {
[Uploader.name]: Uploader, [Uploader.name]: Uploader,
@@ -498,7 +498,7 @@ export default {
} }
// 补充资料类问题件 // 补充资料类问题件
else if (this.issueType === '828601') { else if (this.issueType === '828601') {
// problemData.list.push(...this.imageResultList) problemData.list.push(...this.imageResultList)
if (this.suplementDesc.trim()) { if (this.suplementDesc.trim()) {
problemData.content = this.suplementDesc.trim() problemData.content = this.suplementDesc.trim()
} else { } else {
@@ -752,35 +752,35 @@ export default {
}, 1000) }, 1000)
window['appCallBack'] = this.appCallBack window['appCallBack'] = this.appCallBack
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.iframe { .iframe {
width: 99%; width: 99%;
height: 70vh; height: 70vh;
} }
.uploadTitle { .uploadTitle {
font-size: 14px; font-size: 14px;
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
.bottom-btn { .bottom-btn {
z-index: 1; z-index: 1;
} }
/deep/ .van-dialog__header { /deep/ .van-dialog__header {
padding-top: 1em; padding-top: 1em;
} }
/deep/ .van-search { /deep/ .van-search {
font-size: 10px; font-size: 10px;
} }
#app .van-cell:not(:last-child):after { #app .van-cell:not(:last-child):after {
border: 0; border: 0;
} }
.detail-container { .detail-container {
min-height: 100vh; min-height: 100vh;
background: #fff; background: #fff;
padding-bottom: 40px; padding-bottom: 40px;
@@ -927,8 +927,8 @@ export default {
width: 100%; width: 100%;
height: 40px; height: 40px;
} }
} }
textarea { textarea {
font-size: 13px; font-size: 13px;
border: 0; border: 0;
width: 96%; width: 96%;
@@ -936,5 +936,5 @@ textarea {
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
padding: 5px; padding: 5px;
resize: none; resize: none;
} }
</style> </style>