fix: BUG修改

This commit is contained in:
kun 2024-05-29 20:26:46 +08:00
parent 278df7f5b7
commit 1a9c140129
2 changed files with 7 additions and 7 deletions

View File

@ -38,10 +38,10 @@ if (process.env.NODE_ENV === 'development') {
// Vue.prototype.url_config = 'http://47.93.215.234:9809/' // 鞍钢正式地址(弃用)
// Vue.prototype.url_config = 'http://42.180.188.17:9809/' // 鞍钢正式地址
// Vue.prototype.url_config = 'http://42.180.188.17:11211/' // 鞍钢测试地址
// Vue.prototype.url_config = 'http://182.90.224.237:51234/' //雄哥内网穿透地址
Vue.prototype.url_config = 'http://182.90.224.237:51234/' //雄哥内网穿透地址
// Vue.prototype.url_config = 'http://jxj.zhgdyun.com:61212/' //杰哥内网穿透地址
// Vue.prototype.url_config = ' http://192.168.34.221:28888/' //郭圣雄本地
Vue.prototype.url_config = 'http://192.168.34.221:9111/' //郭圣雄本地
// Vue.prototype.url_config = 'http://192.168.34.221:9111/' //郭圣雄本地
// Vue.prototype.url_config = 'http://192.168.34.155:19111/' //彭洁本地
// Vue.prototype.work_url = 'http://47.93.215.234:19997' // 工作流线上地址(弃用)
// Vue.prototype.work_url = 'http://42.180.188.17:19997' // 工作流线上地址

View File

@ -263,11 +263,11 @@
<view class="uni-form-input">
<radio-group @change="radioChange" name="isBlack">
<label style="margin-right: 15px;" class="radio">
<radio value="0" :checked="form.isBlack==0" />
<radio :value="0" :checked="form.isBlack==0" />
白名单
</label>
<label class="radio">
<radio value="1" :checked="form.isBlack==1" />
<radio :value="1" :checked="form.isBlack==1" />
黑名单
</label>
</radio-group>
@ -340,7 +340,7 @@
driverTelephone: "",
driverWorkerName: "",
outsideDriverIdCard: "",
isBlack: '',
isBlack: 0,
projectSn: '',
entryAndExitPermit: 0
},
@ -760,7 +760,7 @@
})
return false;
}
if (params.isBlack == '') {
if (params.isBlack === '') {
uni.showToast({
title: '请选择是否黑名单',
icon: 'none'
@ -802,7 +802,7 @@
}
if ([2,3].includes(this.form.carModuleType)) {
params.isBlack = '0';
// params.isBlack = '0';
if (this.form.reserveStartTime) {
params.reserveStartTime = this.form.reserveStartTime
} else {