hejianhao
1 天以前 137bb06f7dc711f72abbd5311fa064e0c6a5fc1a
修改bug
3个文件已修改
28 ■■■■ 已修改文件
H5/pages/problemReporting/problemReporting.vue 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/result-entry/index.vue 15 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/work-detail/work-detail.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/problemReporting/problemReporting.vue
@@ -25,7 +25,11 @@
                        </view>
                    </view>
                    <view class="person-item flex1">{{detail.name}}</view>
                    <view class="phone-item flex1">{{detail.contactNumber}}</view>
                    <view class="flex a-center">
                        <view class="phone-item flex1">{{detail.contactNumber}}</view>
                        <image @click.stop="callPhone(detail.contactNumber)" src="../../static/tell.png"
                            class="w-58 h-58 shrink0 " />
                    </view>
                </view>
            </view>
@@ -85,6 +89,11 @@
            }
        },
        methods: {
            callPhone(phoneNumber) {
                uni.makePhoneCall({
                    phoneNumber
                });
            },
            problemReports() {
                // 述求录入并上报
                if (Object.keys(this.appealData).length != 0) {
H5/pages/result-entry/index.vue
@@ -23,8 +23,14 @@
                        <view class="fs-27 lh-38 mt-10">{{ info.name }}</view>
                    </view>
                    <view class="flex-column a-center">
                        <view class="fs-27 lh-38 font-bold">联系电话</view>
                        <view class="fs-27 lh-38 mt-10">{{ info.contactNumber }}</view>
                        <view class="flex a-center">
                            <view>
                                <view class="fs-27 lh-38 font-bold">联系电话</view>
                                <view class="fs-27 lh-38 mt-10">{{ info.contactNumber }}</view>
                            </view>
                            <image @click.stop="callPhone(info.contactNumber)" src="../../static/tell.png"
                                class="w-58 h-58 shrink0 " />
                        </view>
                    </view>
                </view>
                <view v-else class="mt-33">
@@ -226,6 +232,11 @@
            }
        },
        methods: {
            callPhone(phoneNumber) {
                uni.makePhoneCall({
                    phoneNumber
                });
            },
            comfirm() {
                this.appealData = {}
                uni.navigateBack()
H5/pages/work-detail/work-detail.vue
@@ -167,7 +167,7 @@
                <view class="title">问题描述</view>
                <view v-for="(item,index) in getVoiceFile(orderInfo.voiceFile)" :key="index"
                    class="flex a-center j-between py-17 px-19 br-8 bgcolor1 mb-19">
                    <view class="fs-27 lh-38">语音名字{{(index + 1) | numToWords}}</view>
                    <view class="fs-27 lh-38">语音文件{{(index + 1) | numToWords}}</view>
                    <image v-if="!playFlag" @click.stop="playRecording(item)" src="../../static/24gf-playCircle@2x.png"
                        class="w-27 h-27 shrink0" />
                    <image v-else @click.stop="pausePlaying" src="../../static/pausePlaying.png"