对接问卷调查、投诉建议接口

This commit is contained in:
zhouyanli
2026-05-11 17:29:57 +08:00
parent 10505e8000
commit 78c69cdb10
20 changed files with 1143 additions and 1531 deletions

View File

@@ -43,74 +43,41 @@
</template>
<script>
export default {
onReady: function(e) {},
components: {
<script setup>
import { ref } from 'vue';
import {getManagePhoneData} from '../api/apiSub.js'
},
computed: {
},
created() {
},
onShow() {
},
mounted() {},
onReady() {
this.$nextTick(() => {
})
},
data() {
return {
/* 设定状态栏默认高度 */
statusBarHeight: 20,
dataList: [{
src: 'http://47.104.199.163:9090/images/propertyImgs/community1.png',
propertyName: '北境碧桂园小区物业中心',
propertyAddress: 'A栋3单元1801',
phoneList: [{
phoneNum: '080-12312312312',
},
{
phoneNum: '080-12312312312',
}
],
}],
}
},
methods: {
// 电话点击拨号
callPhone(phone) {
uni.makePhoneCall({
phoneNumber: phone.replace(/-/g, "")
});
},
goBack() {
uni.switchTab({
url: '/pages/serviceIndex/serviceIndex',
success: res => {},
fail: () => {},
complete: () => {}
});
},
},
}
const statusBarHeight = ref(20)
const dataList = ref([
{
src: 'http://47.104.199.163:9090/images/propertyImgs/community1.png',
propertyName: '北境碧桂园小区物业中心',
propertyAddress: 'A栋3单元1801',
phoneList: [{
phoneNum: '080-12312312312',
},
{
phoneNum: '080-12312312312',
}
],
}
])
// ====方法=====
function callPhone(phone) {
uni.makePhoneCall({
phoneNumber: phone.replace(/-/g, "")
});
}
function goBack() {
uni.switchTab({
url: '/pages/serviceIndex/serviceIndex',
});
}
</script>
<style lang="scss">
page {