Browse Source

放开售后模块

yxb
zengyuehua 2 years ago
parent
commit
9e1abdd21e

+ 1
- 1
pages/index/index.vue View File

</view> </view>
<view class="text">基础信息变更</view> <view class="text">基础信息变更</view>
</view> </view>
<view class="item-box" @click="$util.msg('该功能正在开发中,敬请期待!')">
<view class="item-box" @click="$util.navTo('/pages/service/service')">
<view class="item item-8"> <view class="item item-8">
<image :src="fileURL + 'image/index/item-more.png'" /> <image :src="fileURL + 'image/index/item-more.png'" />
</view> </view>

+ 4
- 4
pages/service/service.vue View File

activeTab.value = val; activeTab.value = val;
} }
function toNext(url) { function toNext(url) {
// uni.navigateTo({
// url: url
// });
msg("该功能正在开发中,敬请期待!")
uni.navigateTo({
url: url
});
// msg("该功能正在开发中,敬请期待!")
} }
</script> </script>



+ 1
- 1
personal-center/setting/bank-card/bank-card.vue View File

</view> </view>
</view> </view>
</view> </view>
<view style='margin-top: 40rpx;' @click="navTo('/pages/personal-center/bank-card/bank-card-add')">
<view style='margin-top: 40rpx;' @click="navTo('/personal-center/setting/bank-card/bank-card-add')">
<submit-button title="+ 添加银行卡"> <submit-button title="+ 添加银行卡">
</submit-button> </submit-button>
</view> </view>

+ 34
- 3
personal-center/setting/personal-information/user-change.vue View File

import { import {
msg msg
} from "@/utils/utils"; } from "@/utils/utils";
import {
stringToJson
} from "@/utils/network/encryption";
import {


} from "@/utils/network/api.js";
import {
request
} from "@/utils/network/request.js";
const fieldStyle = { const fieldStyle = {
height: '60rpx', height: '60rpx',
color: '#333333', color: '#333333',
fontSize: '28rpx' fontSize: '28rpx'
}; };

const state = reactive({ const state = reactive({
ocrData: { ocrData: {
'conmpany': '贵州市空间加快速度公司',
'type': '企业营业执照',
'card': 'GZ2364174132894'
// 'conmpany': '贵州市空间加快速度公司',
// 'type': '企业营业执照',
// 'card': 'GZ2364174132894'


}, },
buchongData: { buchongData: {
'phone': '' 'phone': ''
}, },
}) })
var data = {
// openId: getItem(StorageKeys.OpenId),
};
const options = {
type: 2,
data: data,
method: "POST",
showLoading: true,
};
request(151, options).then((res) => {
state.addressArray = []
const data = stringToJson(res.bizContent);
if (data.data == null) {
console.log("这是空");
state.addressArray = []
} else {
state.addressArray = data.data;
console.log(state.addressArray, "列表数组");
}
});


const timeClick = () => { const timeClick = () => {
msg('证件有效期') msg('证件有效期')

Loading…
Cancel
Save