Commit cf1d72ff authored by 黄奎's avatar 黄奎

页面修改

parent 27187018
......@@ -108,6 +108,20 @@
</el-select>
</span>
</li>
<li>
<span><em>团队编号</em>
<el-input class="w210" v-model="msg.TCID" placeholder="请输入团队编号" @keyup.enter.native="getList" clearable
@clear="getList">
</el-input>
</span>
</li>
<li>
<span><em>订单号</em>
<el-input class="w210" v-model="msg.OrderId" placeholder="请输入订单" @keyup.enter.native="getList" clearable
@clear="getList">
</el-input>
</span>
</li>
<li>
<span><em>{{ $t("sm.Date") }}</em>
<el-date-picker v-model="msg.StartDate" class="w135" value-format="yyyy-MM-dd" type="date"
......@@ -131,7 +145,8 @@
<el-dropdown-item command="2">单项委托合同</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown> -->
<el-dropdown size="medium" @command="getImport" split-button type="primary" @click="handleClick" style="padding-left:5px;">
<el-dropdown size="medium" @command="getImport" split-button type="primary" @click="handleClick"
style="padding-left:5px;">
一日游合同
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="1">境内旅游合同</el-dropdown-item>
......@@ -266,7 +281,9 @@
TravelAgency_DealMan: "", //经办人
C_TCNUM: "", //团号
C_ProductName: "", //线路名称
IsQueryAll: 0
IsQueryAll: 0,
TCID: "",
OrderId: "",
},
pickerBeginDateBefore: {
disabledDate: time => {
......@@ -295,10 +312,12 @@
},
created() {
if (this.$route.query.TCID && this.$route.query.TCID > 0) {
this.queryPrams.TCID = this.$route.query.TCID
this.queryPrams.TCID = this.$route.query.TCID;
this.msg.TCID = this.$route.query.TCID;
}
if (this.$route.query.orderID && this.$route.query.orderID > 0) {
this.queryPrams.orderID = this.$route.query.orderID
this.queryPrams.orderID = this.$route.query.orderID;
this.msg.OrderId = this.$route.query.orderID;
}
},
mounted() {
......@@ -504,8 +523,8 @@
query: {
id: nId,
blank: "y",
TCID:this.queryPrams.TCID,
orderID:this.queryPrams.orderID,
TCID: this.queryPrams.TCID,
orderID: this.queryPrams.orderID,
tab: title
}
});
......
......@@ -237,6 +237,20 @@
</el-select>
</span>
</li>
<li>
<span><em>团队编号</em>
<el-input class="w210" v-model="msg.TCID" placeholder="请输入团队编号" @keyup.enter.native="resetOtherQuery"
clearable @clear="resetOtherQuery">
</el-input>
</span>
</li>
<li>
<span><em>订单号</em>
<el-input class="w210" v-model="msg.OrderId" placeholder="请输入订单" @keyup.enter.native="resetOtherQuery"
clearable @clear="resetOtherQuery">
</el-input>
</span>
</li>
<li>
<span><em>{{ $t("sm.Date") }}</em>
<el-date-picker v-model="msg.StartDate" class="w135" value-format="yyyy-MM-dd" type="date"
......@@ -410,7 +424,9 @@
C_TCNUM: "", //团号
C_ProductName: "", //线路名称
IsAduitPage: 1, //是否是审核页面
IsQueryAll: 1
IsQueryAll: 1,
TCID: "",
OrderId: "",
},
pickerBeginDateBefore2: {
disabledDate: time => {
......
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