diff --git a/property-uniapp-project/manifest.json b/property-uniapp-project/manifest.json index 3a6ffb2..a27ab7c 100644 --- a/property-uniapp-project/manifest.json +++ b/property-uniapp-project/manifest.json @@ -66,7 +66,8 @@ "NSPhotoLibraryAddUsageDescription" : "保存二维码图片到相册" }, "urltypes" : "uppaylyhuts", - "urlschemewhitelist" : "bocom,bankabc,cmbmobilebank,cmblife,com.icbc.iphoneclient,spdbbank,citicbankpay,credit,com.cebbank.ebank,BankOfShangHai,boscgdlf,cmbc,cibmb,bocmbankpsn,bankofbjpay" + "urlschemewhitelist" : "bocom,bankabc,cmbmobilebank,cmblife,com.icbc.iphoneclient,spdbbank,citicbankpay,credit,com.cebbank.ebank,BankOfShangHai,boscgdlf,cmbc,cibmb,bocmbankpsn,bankofbjpay", + "idfa" : false }, /* SDK配置 */ "sdkConfigs" : { @@ -190,6 +191,17 @@ "icons" : { "foreground" : "unpackage/res/icons/logo-app.png", "background" : "unpackage/res/icons/background.png" + }, + "signingConfigs" : { + "release" : { + "certpath" : "D:/wuye-app-ios-harmony-zhengshu/new_harmony/新花开物业正式.cer", + "keyAlias" : "wuye_release", + "keyPassword" : "0000001AF15B7DC5508CF003B98714F03EE31957599E5E8049D0FC065421D5AEE8BB82BCEDBEC274DA79", + "profile" : "D:/wuye-app-ios-harmony-zhengshu/new_harmony/yonghu_profileRelease.p7b", + "signAlg" : "SHA256withECDSA", + "storeFile" : "D:/wuye-app-ios-harmony-zhengshu/new_harmony/huakaiwuye.p12", + "storePassword" : "0000001AEACD44D53617A151C164F02D7E97C92016ABBD7117C982B31D8744F8EFC60B3D51E521212495" + } } } } diff --git a/property-uniapp-project/pageSubPack/api/apiSub.js b/property-uniapp-project/pageSubPack/api/apiSub.js index bbc425b..8a37fb9 100644 --- a/property-uniapp-project/pageSubPack/api/apiSub.js +++ b/property-uniapp-project/pageSubPack/api/apiSub.js @@ -104,8 +104,8 @@ export const submitQuestionnair = (id,data) => { } // =====投诉意见======= // 获取投诉类型 -export const getComplainType = () => { - return get('/complain/getComplainType') +export const getComplainType = (data) => { + return post('/complain/getComplainType',data) } // 获取投诉列表 export const getComplainList = (data) => { diff --git a/property-uniapp-project/pageSubPack/service-list/addComplaints.vue b/property-uniapp-project/pageSubPack/service-list/addComplaints.vue index 2a634d7..009b990 100644 --- a/property-uniapp-project/pageSubPack/service-list/addComplaints.vue +++ b/property-uniapp-project/pageSubPack/service-list/addComplaints.vue @@ -174,8 +174,9 @@ onLoad(() => { // 获取投诉类型 const getSelectType = async () => { + let params = {status:'0'} try { - const res = await getComplainType() + const res = await getComplainType(params) if (res.code === 200) { typeOptions.value = res.data || [] } else {