Commit fa43148b by 刘泽奇

123

parent b4a8314a
......@@ -38,7 +38,7 @@
<el-input v-model="name" placeholder="请输入内容"></el-input>
</div>
<div><span>交付状态:</span>
<el-select v-model="deliveryStatusName" placeholder="请选择">
<el-select v-model="deliveryStatus" placeholder="请选择">
<el-option v-for="item in DeliveryStatus" :key="item.value" :label="item.label"
:value="item.value">
</el-option>
......
......@@ -109,7 +109,7 @@
inputDate: null,
startTime: null,
entTime: null,
deliveryStatusName: null,
deliveryStatus: null,
/**$ */
CreateDate: null,
tableData: [],
......@@ -274,9 +274,9 @@
/*
console.log(index, row);
*/
if ((row.deliveryStatus == "dsccl")) {
if(this.showReg(index,row)){
if (this.showReg(index, row)) {
return false
}
return true;
......@@ -293,14 +293,14 @@
},
showDetails(idx, row){
if (row.deliveryStatus != "dqrfa") {
if(this.showReg(idx,row)){
if (this.showReg(idx, row)) {
return false
}
return true;
} else {
return false;
}
},
showReg(idx, row){
if (row.itemCode == 'zzsbzc') {
......@@ -327,7 +327,7 @@
query: {
channelUserId: this.$route.query.channelUserId,
deliveryOrderNo: row.deliveryOrderNo,
channelOrderNo:row.channelServiceNo,
channelOrderNo: row.channelServiceNo,
}
});
window.scrollTo(0, 0);
......@@ -342,16 +342,17 @@
console.log(d.data);
if (d.status == 0 && d.data) {
this.tableData = d.data;
this.countPage = d.data.length;
/* 没有分页参数 需要重新改*/
this.countPage = 10 || d.data.length;
d.data.map((item, index) => {
if(item.submitTime){
if (item.submitTime) {
item.submitTime = new Date(item.submitTime).toLocaleString('chinese', { hour12: false });
}else{
} else {
item.submitTime = '--';
}
if(item.CreateDate){
if (item.CreateDate) {
item.CreateDate = new Date(item.CreateDate).toLocaleDateString('chinese', { hour12: false });
}else{
} else {
item.CreateDate = '--';
}
});
......@@ -370,7 +371,7 @@
this.tmName = null;
this.CreateDate = null;
console.log(this.CreateDate);
this.deliveryStatusName = null;
this.deliveryStatus = null;
},
find(){
this.indentInfo.channelServiceNo = this.channelServiceNo;
......@@ -379,7 +380,7 @@
this.indentInfo.itemName = this.itemName;
this.indentInfo.tmName = this.tmName;
this.indentInfo.CreateDate = this.CreateDate;
this.indentInfo.deliveryStatusName = this.deliveryStatusName;
this.indentInfo.deliveryStatus = this.deliveryStatus;
this.indentInfo.startTime = this.startTime || "";
this.indentInfo.entTime = this.entTime || "";
this.handleSizeChange();
......@@ -410,7 +411,7 @@
}
if (obj.flag == "yyzz") {
console.log(obj.result,"...........................");
console.log(obj.result, "...........................");
this.stuff.businessLicensePic = obj.result;
var pic2pdf = { "key": obj.result };
var pic2pdf = this.$root.copyParams(pic2pdf, "pic2pdf", "/action/tmTools/springBoard");
......@@ -518,10 +519,6 @@
this.stuff.businessLicensePic = row.businessLicensePic;
this.stuff.identityCardPic = row.identityCardPic;
this.stuff.smwjUrl = row.smwjUrl;
},
uploadStuffs(){
console.log(this.stuff);
......
......@@ -4,7 +4,7 @@
<el-breadcrumb separator-class="el-icon-arrow-right">
<el-breadcrumb-item :to="listPath">交付中心
</el-breadcrumb-item>
<el-breadcrumb-item>注册</el-breadcrumb-item>
<el-breadcrumb-item>注册</el-breadcrumb-item>
</el-breadcrumb>
</div>
<div style="background-color:white;width:1200px;margin:0 auto;padding:20px 0;padding-bottom: 90px; ">
......@@ -341,7 +341,7 @@
<div class="floatBox-right">
<!-- <img src="/imgs/mobileamilapply/wenhao.png" alt=""> -->
<i class="el-icon-question" @mouseover="mouseOverDemo(99)" @mouseleave="mouseLeaveDemo(99)"></i>
<div id="floatBox-demo" v-show="floatBoxDemo">由于官方商标注册增加“统一社会信用代码”的填写,企业申请必填,个体工商户申请可不填此项,请仔细核对营业执照填写。
<div id="floatBox-demo" v-show="floatBoxDemo">由于官方商标注册增加“统一社会信用代码”的填写,企业和个体户申请必填,请仔细核对营业执照填写。
</div>
</div>
</el-form-item>
......
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