Explorar el Código

放开售后模块

yxb
zengyuehua hace 2 años
padre
commit
9e1abdd21e

+ 1
- 1
pages/index/index.vue Ver fichero

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

+ 4
- 4
pages/service/service.vue Ver fichero

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


+ 1
- 1
personal-center/setting/bank-card/bank-card.vue Ver fichero

@@ -25,7 +25,7 @@
</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>
</view>

+ 34
- 3
personal-center/setting/personal-information/user-change.vue Ver fichero

@@ -34,17 +34,26 @@
import {
msg
} from "@/utils/utils";
import {
stringToJson
} from "@/utils/network/encryption";
import {

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

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

},
buchongData: {
@@ -54,6 +63,28 @@
'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 = () => {
msg('证件有效期')

Cargando…
Cancelar
Guardar