修改提示

parent eae80bfe
......@@ -113,7 +113,7 @@
<wd-radio v-for="(v, n) in radioOpstion" :value="v.code" :key="n">{{ v.text }}</wd-radio>
</wd-radio-group>
</form-item>
<form-item title="福利待遇" icon="">
<form-item title="福利待遇(选填)" icon="">
<view class="welfare">
<view
v-for="(el, nl) in item.myBenefits"
......@@ -124,7 +124,7 @@
>
</view>
</form-item>
<form-item title="身份要求" icon="">
<form-item title="身份" icon="">
<wd-picker
:columns="identityPostion"
value-key="code"
......@@ -135,13 +135,13 @@
>
<view :class="`inner flex-between ${item.identityText ? '' : 'placeholder'}`">
<view class="flex-align-center">
{{ item.identityText || "请选择身份要求" }}
{{ item.identityText || "请选择身份" }}
</view>
</view>
</wd-picker>
</form-item>
<view class="transverse">
<form-item title="学历要求" icon="">
<form-item title="学历" icon="">
<wd-picker
:columns="educationPostion"
value-key="code"
......@@ -173,7 +173,9 @@
</p>
</wd-col-picker>
</form-item>
<form-item title="年龄要求" icon="">
</view>
<form-item title="年龄" icon="">
<wd-col-picker
v-model="ageValue"
:columns="ageColumns"
......@@ -186,7 +188,6 @@
</view>
</wd-col-picker>
</form-item>
</view>
<form-row :fill="false">
<form-item title="专业技术职称(选填)" icon="edit">
<input
......@@ -207,7 +208,7 @@
>
<view :class="`inner flex-between ${item.majorSelectValue ? '' : 'placeholder'}`">
<view class="flex-align-center" bind:tap="onShowIdentitySelect">
{{ item.majorSelectValue || "请选择职等级" }}
{{ item.majorSelectValue || "请选择职等级" }}
</view>
</view>
</wd-picker>
......@@ -431,6 +432,7 @@ getMajorTreeApi().then(res => {
children: res.data[key]
}))
);
majorOpstion.value[0].unshift({ name: "不限" });
}
});
const tabList = ref([
......@@ -449,6 +451,9 @@ const handleConfirmMajor = (params, item) => {
const { value } = params;
item.majorText = value[0];
item.majorRequirement = value[0];
if (value[0] == "不限") {
item.majorRequirement = "";
}
};
const getEnumCertificatesLevel = async () => {
levelOptions.value = await getEumData("EnumCertificatesLevel");
......
......@@ -180,7 +180,14 @@ const nextStep = () => {
title: "申诉中",
content: "您的申述已提交请等待审核",
showCancel: false,
confirmText: "好的"
confirmText: "好的",
success: function (confirm) {
if (confirm.confirm) {
xma.navigateTo({
url: "/pages/login/index"
});
}
}
});
}
});
......
......@@ -67,6 +67,14 @@ instance.interceptors.response.use(
duration: 1900
});
} else if (code == 13) {
if (response.data.data > 0) {
uni.showModal({
title: '您提交的申诉在审核中',
content: '您提交的申诉在审核中,请勿重复提交',
showCancel: true,
confirmText: '确定'
});
} else {
uni.showModal({
title: '您的帐号已失效',
content: '由于您超过1月未登录现已将您的账号禁用您可完成申述后继续使用',
......@@ -81,6 +89,7 @@ instance.interceptors.response.use(
}
});
}
} else if (code == 12) {
uni.showModal({
title: response.data.data.title,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment