董国庆
11 小时以前 b913c19cacbe495274af59fc99e0389749e7d5bd
Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/H5/threeSide
2个文件已修改
26 ■■■■ 已修改文件
H5/pages/problemReporting/problemReporting.vue 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/result-entry/index.vue 15 ●●●● 补丁 | 查看 | 原始文档 | 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()