update:添加说明
This commit is contained in:
@@ -17,9 +17,12 @@
|
|||||||
</template>
|
</template>
|
||||||
</a-result>
|
</a-result>
|
||||||
<a-spin v-else :spinning="spining">
|
<a-spin v-else :spinning="spining">
|
||||||
<div>
|
<div v-if="progressingId != 0" class="mail-tip">
|
||||||
|
<p>
|
||||||
|
请将书面申请材料不包括电子印章申请表邮寄至
|
||||||
|
</p>
|
||||||
|
<p>浙江省 杭州市 西湖区 莫干山路18号 蓝天商务中心</p>
|
||||||
<p>
|
<p>
|
||||||
请将书面申请材料邮寄至 浙江省 杭州市 西湖区 莫干山路18号 蓝天商务中心
|
|
||||||
9楼 张涛 15868462840
|
9楼 张涛 15868462840
|
||||||
</p>
|
</p>
|
||||||
<p>快递费用由申请单位自理</p>
|
<p>快递费用由申请单位自理</p>
|
||||||
@@ -311,6 +314,15 @@
|
|||||||
.ant-upload {
|
.ant-upload {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
.mail-tip {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
transform: translateY(25%);
|
||||||
|
z-index: 1;
|
||||||
|
font-size: 32px;
|
||||||
|
background-color: rgba(255, 255, 255, 0.7);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
@@ -522,7 +534,7 @@ export default {
|
|||||||
};
|
};
|
||||||
const onSubmit = async e => {
|
const onSubmit = async e => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (progressingId == 0) {
|
if (progressingId.value == 0) {
|
||||||
if (modelRef.orderNo) {
|
if (modelRef.orderNo) {
|
||||||
await modifyUnitApply();
|
await modifyUnitApply();
|
||||||
} else {
|
} else {
|
||||||
@@ -530,12 +542,12 @@ export default {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var current = toRaw(unitApplyList.value).find(
|
var current = toRaw(unitApplyList.value).find(
|
||||||
p => p.id == progressingId
|
p => p.id == progressingId.value
|
||||||
);
|
);
|
||||||
if (current.status == 0) {
|
if (current.status == 0) {
|
||||||
await sendUnitApply(progressingId);
|
await sendUnitApply(progressingId.value);
|
||||||
} else if (current.status == 2) {
|
} else if (current.status == 2) {
|
||||||
await queryUnitApply(progressingId);
|
await queryUnitApply(progressingId.value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -690,7 +702,7 @@ export default {
|
|||||||
initPage(unitApply);
|
initPage(unitApply);
|
||||||
editStatus.value = toBit("0000") | editPicFlag | editModifyFlag;
|
editStatus.value = toBit("0000") | editPicFlag | editModifyFlag;
|
||||||
};
|
};
|
||||||
let progressingId = 0;
|
let progressingId = ref(0);
|
||||||
const unitApplyList = ref([]);
|
const unitApplyList = ref([]);
|
||||||
const isSuccess = ref(false);
|
const isSuccess = ref(false);
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
@@ -714,7 +726,7 @@ export default {
|
|||||||
d => [0, 1, 2].indexOf(d.status) > -1
|
d => [0, 1, 2].indexOf(d.status) > -1
|
||||||
);
|
);
|
||||||
if (current) {
|
if (current) {
|
||||||
progressingId = current.id;
|
progressingId.value = current.id;
|
||||||
initPage(current);
|
initPage(current);
|
||||||
} else {
|
} else {
|
||||||
const successApply = unitApplyListRes.data.find(d => d.status == 3);
|
const successApply = unitApplyListRes.data.find(d => d.status == 3);
|
||||||
|
|||||||
Reference in New Issue
Block a user