Commit 6658e3bc by songwenlu

gx

parent d177d96d
...@@ -8,8 +8,8 @@ const env = process.env.NODE_ENV === "development" ? "dev" : "prod"; ...@@ -8,8 +8,8 @@ const env = process.env.NODE_ENV === "development" ? "dev" : "prod";
const baseUrl = { const baseUrl = {
// dev: "http://192.168.3.144:10010/", // dev: "http://192.168.3.144:10010/",
// dev: "http://81.69.231.72:10010/", dev: "http://81.69.231.72:10010/",
dev: "https://www.smart-zj.cn:55901/smartApp/", // dev: "https://www.smart-zj.cn:55901/smartApp/",
// prod: 'http://81.69.231.72:9090/', // prod: 'http://81.69.231.72:9090/',
prod: "https://www.smart-zj.cn:55901/smartApp/", prod: "https://www.smart-zj.cn:55901/smartApp/",
......
...@@ -115,7 +115,7 @@ ...@@ -115,7 +115,7 @@
v-model="form.voucher" max-count="1" /> v-model="form.voucher" max-count="1" />
</template> </template>
</van-field> </van-field>
<van-field :disabled="type === 'view'" label="上传一年以上劳动合同的上传项目" required> <van-field :disabled="type === 'view'" label="上传一年以上劳动合同的上传项目" required v-if="form.guideId!=1000103">
<template #input> <template #input>
<van-uploader :disabled="type === 'view'" :deletable="type !== 'view'" :after-read="afterRead" <van-uploader :disabled="type === 'view'" :deletable="type !== 'view'" :after-read="afterRead"
v-model="form.labour" /> v-model="form.labour" />
...@@ -336,7 +336,7 @@ export default { ...@@ -336,7 +336,7 @@ export default {
this.$toast("请按提示正确上传商品房买卖合同图片"); this.$toast("请按提示正确上传商品房买卖合同图片");
return; return;
} }
if (this.form.labour < 1) { if (this.form.labour < 1&&this.form.guideId!=1000103) {
this.$toast("请按提示正确上传一年以上劳动合同的上传项目最少一张"); this.$toast("请按提示正确上传一年以上劳动合同的上传项目最少一张");
return; return;
} }
......
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