|
|
@ -100,7 +100,7 @@ |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<uGap></uGap> |
|
|
<uGap></uGap> |
|
|
<view class="submit-btnBg" v-if="upDataObj.replyStatus !== 30102"><button class="submit-btn" type="primary" @click="updataQuery()">提交报价</button></view> |
|
|
|
|
|
|
|
|
<view class="submit-btnBg" v-if="upDataObj.replyStatus !== 30102"><button class="submit-btn" type="primary" @click="updateQuery()">提交报价</button></view> |
|
|
<view class=""> |
|
|
<view class=""> |
|
|
<uni-popup ref="popup" :mask-click="false"> |
|
|
<uni-popup ref="popup" :mask-click="false"> |
|
|
<view class="submit-popup"> |
|
|
<view class="submit-popup"> |
|
|
@ -219,7 +219,7 @@ |
|
|
import { back, go2 } from '@/utils/hook.js' |
|
|
import { back, go2 } from '@/utils/hook.js' |
|
|
import qnHeader from '@/components/qn-header/qn-header.vue' |
|
|
import qnHeader from '@/components/qn-header/qn-header.vue' |
|
|
import uGap from '@/components/u-gap/u-gap.vue' |
|
|
import uGap from '@/components/u-gap/u-gap.vue' |
|
|
import { updataEnquiryReply, enquiryReplyDetail } from '@/apis/trade' |
|
|
|
|
|
|
|
|
import { updateEnquiryReply, enquiryReplyDetail } from '@/apis/trade' |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
components: { |
|
|
components: { |
|
|
@ -429,13 +429,13 @@ export default { |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
//提交报价 |
|
|
//提交报价 |
|
|
updataQuery() { |
|
|
|
|
|
|
|
|
updateQuery() { |
|
|
var params = { |
|
|
var params = { |
|
|
...this.upDataObj, |
|
|
...this.upDataObj, |
|
|
userId: this.$store.state.userInfo.userId |
|
|
userId: this.$store.state.userInfo.userId |
|
|
} |
|
|
} |
|
|
return new Promise((resolve, reject) => { |
|
|
return new Promise((resolve, reject) => { |
|
|
updataEnquiryReply(params) |
|
|
|
|
|
|
|
|
updateEnquiryReply(params) |
|
|
.then((res) => { |
|
|
.then((res) => { |
|
|
if (res) { |
|
|
if (res) { |
|
|
uni.showToast({ |
|
|
uni.showToast({ |
|
|
|