# Conflicts:
#	config.js
This commit is contained in:
PQZ 2024-11-06 13:47:04 +08:00
commit 9d716f4e1b
2 changed files with 10 additions and 13 deletions

View File

@ -2,7 +2,8 @@
module.exports = { module.exports = {
// baseUrl: 'https://www.nuoyunr.com', // baseUrl: 'https://www.nuoyunr.com',
// baseUrl: 'http://192.168.1.17:48080', // baseUrl: 'http://192.168.1.17:48080',
baseUrl: "http://192.168.1.4:48080", // baseUrl: "http://192.168.1.4:48080",
baseUrl: "http://localhost:48080",
imagesUrl: 'http://shequ.0315e.com/static/images/pages/', imagesUrl: 'http://shequ.0315e.com/static/images/pages/',
baseImageUrl: 'https://www.nuoyunr.com/minio/', baseImageUrl: 'https://www.nuoyunr.com/minio/',
wsUrl: 'wss://www.nuoyunr.com', wsUrl: 'wss://www.nuoyunr.com',

View File

@ -70,7 +70,7 @@
</picker> --> </picker> -->
<view class="formItem_content" @click="selectServer"> <view class="formItem_content" @click="selectServer">
<view class="label">预约项目</view> <view class="label">预约项目</view>
<input disabled class="formItemInput" placeholder="请选择预约项目" type="text" v-model="service.name" /> <input disabled class="formItemInput" placeholder="请选择预约项目" type="text" v-model="service.label" />
<image v-if="!service.name" class="formItemBtn" src="../../static/icons/homeInfoMore.png" mode="aspectFit"> <image v-if="!service.name" class="formItemBtn" src="../../static/icons/homeInfoMore.png" mode="aspectFit">
</image> </image>
</view> </view>
@ -154,7 +154,7 @@
formData:{ formData:{
userName: null, userName: null,
userMobile: null, userMobile: null,
projectId: null, repairType: null,
carId: null, carId: null,
carNo: null, carNo: null,
bookingTime: null, bookingTime: null,
@ -266,7 +266,6 @@
url: '/pages/myReservation/reservationSuccess?info=' + encodeURIComponent(JSON.stringify(this.info)) url: '/pages/myReservation/reservationSuccess?info=' + encodeURIComponent(JSON.stringify(this.info))
}) })
}).catch(() => {}) }).catch(() => {})
}, },
async initCarList() { async initCarList() {
const res = await request({ const res = await request({
@ -308,23 +307,20 @@
// //
async getServer(corpId) { async getServer(corpId) {
const res = await request({ const res = await request({
url: "/userClient/base/company/get", url: "/userClient/dict/type?type=repair_type",
method: 'get', method: 'get'
params: {
id: corpId
}
}) })
this.serviceList = res.data.servicePackages this.serviceList = res.data
}, },
// //
selectServer(){ selectServer(){
const servers = this.serviceList.map(item => item.name) const servers = this.serviceList.map(item => item.label)
uni.showActionSheet({ uni.showActionSheet({
itemList: servers, itemList: servers,
success: (res) => { success: (res) => {
this.service = this.serviceList[res.tapIndex] this.service = this.serviceList[res.tapIndex]
this.formData.projectId = this.service.id this.formData.repairType = this.service.value
this.info.serviceName = this.service.name this.info.serviceName = this.service.label
}, },
fail: (err) => { fail: (err) => {
console.error('选择框显示失败:', err); console.error('选择框显示失败:', err);