| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <div class="AIImageDetail">
- <p class="titleText">请主管了解情况后回复原因及解决方案</p>
- <div class="feedbackReason">
- <div class="cause">
- <div class="title">
- <span style="color: red">*</span>
- <span>反馈原因及解决方案</span>
- </div>
- <van-field
- v-model="causeMessageData"
- :disabled="approveState == '1'"
- rows="1"
- autosize
- type="textarea"
- placeholder="请反馈原因及解决方案" />
- </div>
- </div>
- <div class="confirmBtn" v-if="approveState == '0'">
- <van-button type="info" @click="confirm">提交</van-button>
- </div>
- </div>
- </template>
- <script>
- import { savePhotoApprove } from '@/api/AIImage';
- export default {
- name: 'AIImageDetail',
- props: {
- approveState: {
- type: String,
- default: '0',
- },
- causeMessage: {
- type: String,
- default: '',
- },
- photoApproveId: {
- type: [String, Number],
- default: '',
- },
- },
- data() {
- return {
- causeMessageData: '',
- };
- },
- activated() {
- this.causeMessageData = this.causeMessage;
- },
- methods: {
- confirm() {
- if (!this.causeMessageData) {
- this.$toast('请反馈原因及解决方案');
- return;
- }
- savePhotoApprove({
- photoApproveId: this.photoApproveId, // long 主键
- resultCorrect: '', // string AI识别是否正确: 1 正确 0不正确
- reasonsSolutions: this.causeMessageData, // string 原因及解决方案
- feedbackError: '', // string 反馈AI识别不正确
- }).then((res) => {
- if (res.code == 200) {
- this.$toast.loading({
- duration: 1000,
- message: '已反馈给本部',
- forbidClick: true,
- onClose: () => {
- this.onClickLeft();
- },
- });
- } else {
- this.$toast('提交失败');
- }
- });
- },
- onClickLeft() {
- this.$router.replace({
- path: '/AIImage',
- });
- },
- },
- };
- </script>
|