DESKTOP-2IO5MST\huting pirms 1 gada
vecāks
revīzija
95923141a0

+ 0
- 2
App.vue Parādīt failu

@@ -164,8 +164,6 @@ export default {
request(getGlobalParam, options).then((res) => {
const result = stringToJson(res.bizContent);
setItem('globalParam', result.data)
// this.getGlobalParam();
// getItem("globalParam")
console.log("配置",result);
});
},

+ 8
- 1
login/register-step2.vue Parādīt failu

@@ -4,7 +4,7 @@
<view class="title">请输入验证码</view>
<view class="hint">验证码已发送至:{{ phone }}</view>
<view class="input-code">
<verification-code-input v-model="code"></verification-code-input>
<verification-code-input v-model="code" ></verification-code-input>
</view>
<view class="hint2">
<view class="green">{{ codeDuration === 0 ? "" : codeDuration }}</view>
@@ -100,6 +100,13 @@ const nextStep = () => {
}
.input-code {
margin: 100rpx -10rpx 0px;
background: transparent !important;
}
::v-deep .flex-box .hide-input{
background: transparent !important;
}
::v-deep .code-box{
background: transparent !important;
}
.hint2 {
margin-top: 40rpx;

+ 0
- 3
pages/user/user.vue Parādīt failu

@@ -375,9 +375,6 @@
filter: grayscale(100%);
opacity: 0.7;
}



.wrapper {
position: relative;
background: #fff;

+ 3
- 0
subpackage/after-sale/account-recharge/login.vue Parādīt failu

@@ -98,4 +98,7 @@
.go>text{
text-decoration: underline;
}
.uni-input{
background: transparent;
}
</style>

+ 1
- 0
subpackage/after-sale/rescind-carId/rescind-carId-select.vue Parādīt failu

@@ -593,6 +593,7 @@
</script>

<style lang="scss" scoped>
.title {
font-size: 35rpx;
font-family: Microsoft YaHei;

+ 4
- 3
subpackage/orders/components/layout-numberplate-color.vue Parādīt failu

@@ -11,11 +11,12 @@
</template>

<script setup lang="ts">
import { onMounted, reactive } from "vue";
import { onMounted, reactive,onLoad} from "vue";
import{fileURL} from '@/datas/fileURL.js';
import { getItem} from "@/utils/storage";
import { getGlobalParam } from "@/utils/network/api.js";
import {getCodeName} from "@/datas/queryKey.js";
import { msg } from "@/utils/utils";
const emit = defineEmits(['numberplateResult'])
const props = defineProps({
@@ -60,7 +61,7 @@
}
const getCarColor = () => {
const data=getItem('globalParam')
if(props.type==1){
if(props.type=="1"){
for(var i=0;i<data.carPlateColorType.length;i++){
for(var j=0;j<state.allColorList.length;j++){
console.log("23",getCodeName('VEHICLE_COLOR_TYPE',data.trucksPlateColorType[i]))
@@ -79,7 +80,7 @@
}
}
}
console.log("state.numberplateColorList",state.numberplateColorList)
}
onMounted(()=>{

+ 17
- 2
subpackage/orders/essential-information.vue Parādīt failu

@@ -140,6 +140,7 @@ import {
etcVehiclePlateVer,
searchOrder,
productReCode,
getGlobalParam
} from "@/utils/network/api.js";
import { request } from "@/utils/network/request.js";
import { reactive, ref } from "vue";
@@ -151,7 +152,7 @@ const state = reactive({
vehiclePlate: undefined, //车牌号
vehiclePlateNumber: "", //车牌号
vehiclePlateColor: 0, //车盘颜色
type: "0", //车牌类型
type: "1", //车牌类型
userType: 1,
whetherToMail: getItem(StorageKeys.OpenId) ? 0 : "", //是否需要邮寄 小程序默认邮寄 0邮寄||1不邮寄 不登录为1
orderSource: "WECHAT",
@@ -170,7 +171,20 @@ const state = reactive({
addressArray: [],
isSign:''
});

const globalParam=()=>{
const options = {
type: 2,
data: {
"loginSource":getItem("loginSource")
},
method: "POST",
showLoading: true,
};
request(getGlobalParam, options).then((res) => {
const result = stringToJson(res.bizContent);
console.log("配置",result);
});
}
/* 选择车牌颜色 */
const checkNumberplateColor = (item: any) => {
state.data.vehiclePlateColor = item.id;
@@ -325,6 +339,7 @@ const orderStepGoActon = (val: any) => {
};

onLoad((option: any) => {
globalParam();
state.data.opId = getItem(StorageKeys.OpenId);
state.data.type = option.type; //客车
state.data.userType = option.userType;

+ 10
- 6
subpackage/orders/opening-account-unit.vue Parādīt failu

@@ -66,22 +66,22 @@
<view class="title"> 识别内容如下 </view>
<u-form label-width="200" :model="state.form" ref="uForm">
<u-form-item label="公司名称">
<u-input inputAlign="right" placeholder='请输入公司名称' v-model="state.form.userName" />
<u-input inputAlign="right" class="clearBg" placeholder='请输入公司名称' v-model="state.form.userName" />
</u-form-item>
<u-form-item label="部门名称">
<u-input inputAlign="right" placeholder='请输入部门名称' v-model="state.form.department" />
<u-input inputAlign="right" class="clearBg" placeholder='请输入部门名称' v-model="state.form.department" />
</u-form-item>
<u-form-item label="社会信用代码">
<u-input inputAlign="right" placeholder='请输入社会信用代码' v-model="state.form.userIdNum" />
<u-input inputAlign="right" class="clearBg" placeholder='请输入社会信用代码' v-model="state.form.userIdNum" />
</u-form-item>
<u-form-item label="经办人姓名">
<u-input inputAlign="right" placeholder='请输入经办人姓名' v-model="state.form.agentName" />
<u-input inputAlign="right" class="clearBg" placeholder='请输入经办人姓名' v-model="state.form.agentName" />
</u-form-item>
<u-form-item label="经办人身份证号">
<u-input inputAlign="right" placeholder='请输入经办人身份证号' v-model="state.form.agentIdNum" />
<u-input inputAlign="right" class="clearBg" placeholder='请输入经办人身份证号' v-model="state.form.agentIdNum" />
</u-form-item>
<u-form-item label="经办人联系方式">
<u-input inputAlign="right" placeholder='请输入经办人联系方式' v-model="state.form.tel" />
<u-input inputAlign="right" class="clearBg" placeholder='请输入经办人联系方式' v-model="state.form.tel" />
</u-form-item>
</u-form>
</view>
@@ -518,5 +518,9 @@ import {
line-height: 24rpx;
margin-bottom: 60rpx;
}
}
::v-deep .u-input__input{
background: transparent;
}
</style>

Notiek ielāde…
Atcelt
Saglabāt