update:添加说明

This commit is contained in:
2021-05-26 10:08:01 +08:00
parent 5c89ca9e7d
commit 180faef57b

View File

@@ -17,9 +17,12 @@
</template>
</a-result>
<a-spin v-else :spinning="spining">
<div>
<div v-if="progressingId != 0" class="mail-tip">
<p>
请将书面申请材料不包括电子印章申请表邮寄至
</p>
<p>浙江省 杭州市 西湖区 莫干山路18号 蓝天商务中心</p>
<p>
请将书面申请材料邮寄至 浙江省 杭州市 西湖区 莫干山路18号 蓝天商务中心
9 张涛 15868462840
</p>
<p>快递费用由申请单位自理</p>
@@ -311,6 +314,15 @@
.ant-upload {
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>
<script>
@@ -522,7 +534,7 @@ export default {
};
const onSubmit = async e => {
e.preventDefault();
if (progressingId == 0) {
if (progressingId.value == 0) {
if (modelRef.orderNo) {
await modifyUnitApply();
} else {
@@ -530,12 +542,12 @@ export default {
}
} else {
var current = toRaw(unitApplyList.value).find(
p => p.id == progressingId
p => p.id == progressingId.value
);
if (current.status == 0) {
await sendUnitApply(progressingId);
await sendUnitApply(progressingId.value);
} else if (current.status == 2) {
await queryUnitApply(progressingId);
await queryUnitApply(progressingId.value);
}
}
};
@@ -690,7 +702,7 @@ export default {
initPage(unitApply);
editStatus.value = toBit("0000") | editPicFlag | editModifyFlag;
};
let progressingId = 0;
let progressingId = ref(0);
const unitApplyList = ref([]);
const isSuccess = ref(false);
onMounted(async () => {
@@ -714,7 +726,7 @@ export default {
d => [0, 1, 2].indexOf(d.status) > -1
);
if (current) {
progressingId = current.id;
progressingId.value = current.id;
initPage(current);
} else {
const successApply = unitApplyListRes.data.find(d => d.status == 3);