Commit c43ed033 authored by 罗成兵's avatar 罗成兵

分配记录

parent 6f0d3e04
...@@ -80,8 +80,8 @@ ...@@ -80,8 +80,8 @@
<img style="width: 100%" :src="consentUrl" height="100%"/> <img style="width: 100%" :src="consentUrl" height="100%"/>
</div> </div>
<div v-else> <div v-else>
<div style="white-space:pre;text-indent:2em"> <div>
<div v-html="consentInfo" style="white-space:pre"> <div v-html="consentInfo" style="width: 100%">
</div> </div>
<div style="float: right;margin-right: 10px"> <div style="float: right;margin-right: 10px">
<div style="height: 60px">签名: <img style="width:200px;height: 40px;display: inline-block" :src="applySignUrl" height="100%"/></div> <div style="height: 60px">签名: <img style="width:200px;height: 40px;display: inline-block" :src="applySignUrl" height="100%"/></div>
......
...@@ -169,10 +169,13 @@ ...@@ -169,10 +169,13 @@
submitForm() { submitForm() {
let vm = this; let vm = this;
this.$refs.formRef.validate(valid => { this.$refs.formRef.validate(valid => {
if (true) { if (valid) {
// vm.subLoad = true; // vm.subLoad = true;
const {areaCode, areaName, ...others} = vm.formData const {areaCode, areaName, ...others} = vm.formData;
let areaInfo = areaCode[areaCode.length - 1] let areaInfo = "";
if (this.$api.utils.isNoBlank(areaCode)) {
areaInfo = areaCode[areaCode.length - 1];
}
let par = { let par = {
areaCode: areaInfo, areaCode: areaInfo,
...others ...others
......
...@@ -300,5 +300,10 @@ ant-pagination-item:focus, .ant-pagination-item:hover { ...@@ -300,5 +300,10 @@ ant-pagination-item:focus, .ant-pagination-item:hover {
color: #FF4D80; color: #FF4D80;
border: 1px solid #FF4D80; border: 1px solid #FF4D80;
} }
.ant-tag-blue{
background-color: #FF4D80;color: white;border: 0;cursor:pointer;
}
.ant-tag-blue:hover{
background-color: red;
}
//--------------------------------------------------------- //---------------------------------------------------------
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