@@ -369,7 +369,9 @@
:on-success="successUpload"
:before-remove="beforeRemove"
multiple
+ :limit="10"
:on-exceed="handleExceed"
+ :file-list="fileLists"
>
上传文件
可上传同意申报说明扫描版PDF文件或图片压缩包。
@@ -433,6 +435,8 @@ export default {
return {
index_num: 2,
sub: 0,
+ bgData: null,
+ initialText: '',
imgUrl: {
bg0: require("../../../static/img/bg0.png"),
bg1: require("../../../static/img/bg1.png"),
@@ -446,8 +450,8 @@ export default {
area: [],
name: '',
company: '',
- tid: Number,
- rid: Number,
+ tid: '',
+ rid: '',
first_level: '',
secondary: '',
fieldeara: '',
@@ -495,7 +499,8 @@ export default {
file: '',
subStatus: 0,
src: '',
- pictureHeight: ''
+ pictureHeight: '',
+ picture: []
};
},
computed: {},
@@ -514,13 +519,12 @@ export default {
},
methods: {
successUpload(response, file, fileList) {
- let arr = []
- fileList.forEach((list, index) => {
- arr.push(list.response.data.url);
- });
- let arrVal = this.fileLists
- arrVal = arr
- this.fileLists = arrVal
+ this.picture.push(
+ {
+ name: file.name,
+ url: file.response.data.url
+ }
+ )
},
handleRemove(file, fileList) {
console.log(file, fileList);
@@ -529,14 +533,14 @@ export default {
console.log(file);
},
handleExceed(files, fileList) {
- this.$message.warning(`The limit is 5, you selected ${files.length} files this time, add up to ${files.length + fileList.length} totally`);
+ this.$message.warning(`当前限制选择 10 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
},
beforeRemove(file, fileList) {
return this.$confirm(`确定移除 ${file.name} ?`);
},
/** 获取富文本内容 */
- getContent(data) {
- this.funds = data
+ quillVal(data) {
+ this.initialText = data
},
/** 申报单位承诺 */
thf() {
@@ -553,7 +557,7 @@ export default {
this.sub = s
}
- this.sub = s
+ // this.sub = s
let aterm = new Date(this.aterm).getTime()
let fterm = new Date(this.fterm).getTime()
@@ -567,32 +571,31 @@ export default {
// console.log(this.first_level);
-
- // if (s == 1) {
- // if (this.name == '' || this.company == '' || this.tid == '' ||
- // this.rid == '' || this.first_level == '' || this.secondary == '' ||
- // this.fieldeara == '' || this.attribute == '' || this.aterm == '' ||
- // this.fterm == '' || this.postaladdress == '' || this.postalcode == '' ||
- // this.pmail == '' || this.plegal == '' || this.plcode == '' ||
- // this.pname == '' || this.poster == '' || this.poffice_tel == '' ||
- // this.aphone == '' || this.cname == '' || this.cpost == '' || this.coffice_tel == '' ||
- // this.cphone == ''
- // ) {
- // alert('以上内容不可为空!')
- // return
- // } else if (this.aterm > this.fterm) {
- // alert('截止日期应比申请日期晚')
- // return
- // } else if (!regd.test(this.poffice_tel) || !regd.test(this.coffice_tel)) {
- // alert('请填写正确的电话号码!')
- // return
- // } if (!regs.test(this.aphone) || !regs.test(this.cphone)) {
- // alert('请填写正确的手机号码!')
- // return
- // } else {
- // this.sub = s
- // }
- // }
+ if (s == 1) {
+ if (this.name == '' || this.company == '' || this.tid == '' ||
+ this.rid == '' || this.first_level == '' || this.secondary == '' ||
+ this.fieldeara == '' || this.attribute == '' || this.aterm == '' ||
+ this.fterm == '' || this.postaladdress == '' || this.postalcode == '' ||
+ this.pmail == '' || this.plegal == '' || this.plcode == '' ||
+ this.pname == '' || this.poster == '' || this.poffice_tel == '' ||
+ this.aphone == '' || this.cname == '' || this.cpost == '' || this.coffice_tel == '' ||
+ this.cphone == ''
+ ) {
+ alert('以上内容不可为空!')
+ return
+ } else if (this.aterm > this.fterm) {
+ alert('截止日期应比申请日期晚')
+ return
+ } else if (!regd.test(this.poffice_tel) || !regd.test(this.coffice_tel)) {
+ alert('请填写正确的电话号码!')
+ return
+ } if (!regs.test(this.aphone) || !regs.test(this.cphone)) {
+ alert('请填写正确的手机号码!')
+ return
+ } else {
+ this.sub = s
+ }
+ }
},
/** 上传文件 */
/*
@@ -654,38 +657,36 @@ export default {
let regd = /^(\(\d{3,4}\)|\d{3,4}-|\s)?\d{7,14}$/
let regs = /^(0|86|17951)?(13[0-9]|15[012356789]|166|17[3678]|18[0-9]|14[57])[0-9]{8}$/
- // if (this.sub == 1) {
- // if (this.prespo == '' || this.respoadd == '' || this.respopcode == '' ||
- // this.respomail == '' || this.respopname == '' ||
- // this.respopost == '' || this.respoophone == '' ||
- // this.respocname == '' || this.respocpost == '' || this.respocophone == '' ||
- // this.decldes == '' || this.prodes == '' ||
- // this.prodemo == '' || this.prodemojc == '' || this.prodemotj == '' ||
- // this.prodemojd == '' || this.prodemoxg == '' || this.prodemofg == '' ||
- // this.prodemotwo == '' || this.funds == ''
- // ) {
- // alert('以上内容不可为空!')
- // return
- // } else if (!regd.test(this.respoophone) || !regd.test(this.respocophone)) {
- // alert('请填写正确的电话号码!')
- // return
- // } else if (this.thff == false) {
- // alert('请同意:申报单位承诺')
- // return
- // } else if (this.fileLists.length == 0) {
- // alert('未上传文件!')
- // return
- // }
- // } else {
- // alert('数据出错!')
- // return
- // }
- /**
- * if (!regs.test(this.respoptel) || !regs.test(this.respoctel)) {
- alert('请填写正确的手机号码!')
+ let text = this.funds
+ text = this.initialText
+ this.funds = text
+
+ if (this.sub == 1) {
+ if (this.prespo == '' || this.respoadd == '' || this.respopcode == '' ||
+ this.respomail == '' || this.respopname == '' ||
+ this.respopost == '' || this.respoophone == '' ||
+ this.respocname == '' || this.respocpost == '' || this.respocophone == '' ||
+ this.decldes == '' || this.prodes == '' ||
+ this.prodemo == '' || this.prodemojc == '' || this.prodemotj == '' ||
+ this.prodemojd == '' || this.prodemoxg == '' || this.prodemofg == '' ||
+ this.prodemotwo == '' || this.funds == ''
+ ) {
+ alert('以上内容不可为空!')
return
- }
- */
+ } else if (!regd.test(this.respoophone) || !regd.test(this.respocophone)) {
+ alert('请填写正确的电话号码!')
+ return
+ } else if (this.thff == false) {
+ alert('请同意:申报单位承诺')
+ return
+ } else if (this.picture.length == 0) {
+ alert('未上传文件!')
+ return
+ }
+ } else {
+ alert('数据出错!')
+ return
+ }
if (this.respoptel != '' && !regs.test(this.respoptel)) {
alert('请填写正确的手机号码!')
@@ -696,17 +697,17 @@ export default {
return false;
}
+ // console.log(this.funds, '提交时打印');
+
let s = this.subStatus;
s = index;
this.subStatus = s
let val = this.proimages
- // val = JSON.stringify(this.fileLists)
- val = this.fileLists.join(',')
+ val = JSON.stringify(this.picture)
this.proimages = val
+ console.log(this.proimages, 659);
+ return false;
- // console.log(this.proimages);
- // return false;
-
if (this.proimages.length == 0) {
alert('文件还未上传!')
@@ -774,12 +775,18 @@ export default {
proimages: _this.proimages
}
}).then(res => {
+ console.log(res);
+
if (res.data.code === 200) {
- alert(res.data.data.msg)
- _this.proimages = ''
- _this.$router.push({
- name: 'project'
- })
+ if (res.data.data.code === 200) {
+ alert(res.data.data.msg)
+ _this.proimages = ''
+ _this.$router.push({
+ name: 'project'
+ })
+ } else {
+ alert(res.data.data.msg)
+ }
} else {
alert(res.data.message)
}
@@ -801,6 +808,10 @@ export default {
_this.types = res.data.data.type
_this.area = res.data.data.area
_this.first_levels = res.data.data.first_level
+ if (this.$route.query.id) {
+ let id = this.$route.query.id;
+ this.getDataDetails(id)
+ }
} else {
_this.$message.error('请求数据有问题!')
}
@@ -841,9 +852,96 @@ export default {
.catch(err => {
console.log(err)
})
+ },
+ assignment(data) {
+ this.name = data.name
+ this.company = data.company
+ for (var prop in this.types) {
+ if (data.tid == this.types[prop]) {
+ this.tid = prop
+ }
+ }
+ this.area.forEach((item, index) => {
+ if (data.rid == item) {
+ this.rid = parseInt(index)
+ }
+ })
+ for (var prop in this.first_levels) {
+ if (data.first_level == this.first_levels[prop]) {
+ this.first_level = prop
+ }
+ }
+ this.secondary = data.secondary
+ this.fieldeara = data.fieldeara
+ this.attribute = data.attribute
+ this.attribute = data.attribute
+ this.fterm = data.fterm
+ this.postaladdress = data.postaladdress
+ this.postalcode = data.postalcode
+ this.pmail = data.pmail
+ this.fax_tel = data.fax_tel
+ this.plegal = data.plegal
+ this.plcode = data.plcode
+ this.pname = data.pname
+ this.poster = data.poster
+ this.poffice_tel = data.poffice_tel
+ this.aphone = data.aphone
+ this.cname = data.cname
+ this.cpost = data.cpost
+ this.coffice_tel = data.coffice_tel
+ this.cphone = data.cphone
+ this.prespo = data.prespo
+ this.respoadd = data.respoadd
+ this.respopcode = data.respopcode
+ this.respomail = data.respomail
+ this.respophone = data.respophone
+ this.respopname = data.respopname
+ this.respopost = data.respopost
+ this.respoophone = data.respoophone
+ this.respoptel = data.respoptel
+ this.respocname = data.respocname
+ this.respocpost = data.respocpost
+ this.respocophone = data.respocophone
+ this.respoctel = data.respoctel
+ this.decldes = data.decldes
+ this.prodes = data.prodes
+ this.prodemo = data.prodemo
+ this.prodemojc = data.prodemojc
+ this.prodemotj = data.prodemotj
+ this.prodemojd = data.prodemojd
+ this.prodemoxg = data.prodemoxg
+ this.prodemofg = data.prodemofg
+ this.prodemotwo = data.prodemotwo
+ this.prodemojc = data.prodemojc
+ this.initialText = data.funds
+
+ // let index = _this.data.proimages.lastIndexOf("\/")
+ // let name = data.proimages.substring(index + 1, data.proimages.length)
+ // this.fileList = this.proimages
+ },
+ getDataDetails(id) {
+ this.$http({
+ method: 'post',
+ url: 'v1/project/details',
+ data: {
+ id: id
+ }
+ }).then(res => {
+ if (res.data.data.code === 200) {
+ this.bgData = res.data.data.data.ProjectDetails
+ this.assignment(this.bgData)
+ } else {
+ alert('请求失败!')
+ }
+ })
+ // eslint-disable-next-line handle-callback-err
+ .catch(err => {
+ console.log(err)
+ })
}
},
- created() { },
+ created() {
+ },
mounted() {
this.status()
}
diff --git a/src/views/project/Project.vue b/src/views/project/Project.vue
index c9206d5..106f041 100644
--- a/src/views/project/Project.vue
+++ b/src/views/project/Project.vue
@@ -101,7 +101,7 @@
class="list"
v-for="(item,index) in bgData.info"
:key="index"
- @click="$jParams('schedule',{id:item.id})"
+ @click="item.tid == 1000 ? $jP('application',{id:item.id}) : $jParams('schedule',{id:item.id})"
>
@@ -115,6 +115,7 @@
![]()
+
@@ -181,7 +182,8 @@ export default {
tg: require("../../../static/img/tg.png"),
btg: require("../../../static/img/btg.png"),
shz: require("../../../static/img/shz.png"),
- zxz: require("../../../static/img/zxz.png")
+ zxz: require("../../../static/img/zxz.png"),
+ wtj: require("../../../static/img/wtj.png")
},
// text: ["全部", "项目初筛", "项目立项"],
text: ["全部"],
@@ -353,8 +355,8 @@ export default {
}
/deep/ .el-icon.el-icon-arrow-left::before {
- content: "上一页";
- font-family: "MicrosoftYaHei";
+ content: '上一页';
+ font-family: 'MicrosoftYaHei';
font-size: 12px;
font-weight: normal;
font-stretch: normal;
@@ -371,8 +373,8 @@ export default {
}
/deep/ .el-icon.el-icon-arrow-right::before {
- content: "下一页";
- font-family: "MicrosoftYaHei";
+ content: '下一页';
+ font-family: 'MicrosoftYaHei';
font-size: 12px;
font-weight: normal;
font-stretch: normal;
@@ -386,7 +388,7 @@ export default {
// height: 773px;
.cc::after {
- content: "";
+ content: '';
width: 367px;
display: block;
height: 0px;
@@ -428,7 +430,7 @@ export default {
margin-right: 16px;
}
span {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 14px;
font-weight: normal;
font-stretch: normal;
@@ -466,7 +468,7 @@ export default {
justify-content: space-between;
align-items: center;
time {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 14px;
font-weight: normal;
font-stretch: normal;
@@ -488,7 +490,7 @@ export default {
font-size: 12px;
}
h3 {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 16px;
font-weight: normal;
font-stretch: normal;
@@ -515,7 +517,7 @@ export default {
text-align: center;
margin-right: 78px;
width: 90px;
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 20px;
font-weight: normal;
font-stretch: normal;
@@ -527,7 +529,7 @@ export default {
color: #e60012;
position: relative;
&::after {
- content: "";
+ content: '';
width: 91px;
height: 2px;
background-image: linear-gradient(#e60012, #e60012),
@@ -552,13 +554,13 @@ export default {
.block {
/deep/.el-range-editor.el-input__inner {
width: 325px;
- background: url("../../../static/img/xa.png") 90% center no-repeat;
+ background: url('../../../static/img/xa.png') 90% center no-repeat;
background-color: #f9f8f8;
}
/deep/.el-date-editor .el-range-input {
background-color: #f9f8f8;
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 18px;
font-weight: normal;
font-stretch: normal;
@@ -572,7 +574,7 @@ export default {
}
/deep/.el-date-editor .el-range-separator {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 18px;
font-weight: normal;
font-stretch: normal;
@@ -594,7 +596,7 @@ export default {
-moz-appearance: none;
-webkit-appearance: none;
/* 右侧添加小箭头的背景图 */
- background: url("../../../static/img/xa.png") 90% center no-repeat;
+ background: url('../../../static/img/xa.png') 90% center no-repeat;
background-size: 14px 8px;
// width: 325px;
padding: 0px 30px;
@@ -616,7 +618,7 @@ export default {
-moz-appearance: none;
-webkit-appearance: none;
/* 右侧添加小箭头的背景图 */
- background: url("../../../static/img/xa.png") 90% center no-repeat;
+ background: url('../../../static/img/xa.png') 90% center no-repeat;
background-size: 14px 8px;
// width: 134px;
padding: 0px 30px;
@@ -638,7 +640,7 @@ export default {
-moz-appearance: none;
-webkit-appearance: none;
/* 右侧添加小箭头的背景图 */
- background: url("../../../static/img/xa.png") 90px center no-repeat;
+ background: url('../../../static/img/xa.png') 90px center no-repeat;
background-size: 14px 8px;
width: 134px;
height: 38px;
@@ -666,7 +668,7 @@ export default {
linear-gradient(#e60012, #e60012);
background-blend-mode: normal, normal;
border-radius: 4px;
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 16px;
font-weight: normal;
font-stretch: normal;
@@ -705,7 +707,7 @@ export default {
align-items: center;
span:first-child {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 18px;
font-weight: normal;
font-stretch: normal;
@@ -714,7 +716,7 @@ export default {
}
span:last-child {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 24px;
font-weight: bold;
font-stretch: normal;
@@ -726,7 +728,7 @@ export default {
}
.top-p {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 18px;
font-weight: normal;
font-stretch: normal;
@@ -788,7 +790,7 @@ export default {
align-items: center;
span {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 20px;
font-weight: normal;
font-stretch: normal;
@@ -797,7 +799,7 @@ export default {
}
time {
- font-family: "MicrosoftYaHei";
+ font-family: 'MicrosoftYaHei';
font-size: 20px;
font-weight: normal;
letter-spacing: 0px;
diff --git a/static/img/wtj.png b/static/img/wtj.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0ec0d3ced946f542a6e6545c76d58be75d7bb8c
GIT binary patch
literal 19352
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
xMsE+CRwvQzHw*QUlk>{{i(*tmXg!
literal 0
HcmV?d00001