Commit e4a74084 by 刘泽奇

123

parent 4028271f
...@@ -134,9 +134,9 @@ const routes = [ ...@@ -134,9 +134,9 @@ const routes = [
}, },
///// 公司列表页 ///// 公司列表页
{ {
path: "/comapnylist", path: "/companylist",
name: "comapnylist", name: "companylist",
component: () => import("@/views/fqembed/comapnylist.vue") component: () => import("@/views/fqembed/companylist.vue")
}, },
///// 中转页面 ///// 中转页面
{ {
......
...@@ -338,36 +338,74 @@ export default { ...@@ -338,36 +338,74 @@ export default {
label: "上海" label: "上海"
}, },
{ {
value: "山西", value: "深圳",
label: "山西" label: "深圳"
}, },
{ {
value: "河北", value: "成都",
label: "河北" label: "成都"
},
{
value: "杭州",
label: "杭州"
},
{
value: "广州",
label: "广州"
} }
], ],
scheme: "", scheme: "",
schemeOptions: [ schemeOptions: [
{ {
value: "ytj", value: "dqr",
label: "已提交" label: "待确认"
}, },
{ {
value: "yfk", value: "ywc",
label: "已付款" label: "已完成"
}, },
{ {
value: "yzf", value: "yzf",
label: "已作废" label: "已作废"
},
{
value: "ytk",
label: "已退款"
} }
], ],
companyData: [], companyData: [],
// 云 ******************* // 云 *******************
regParkOptions: [], regParkOptions: [
{
value: "上海云上公司",
label: "上海云上公司"
},
{
value: "东莞云上公司",
label: "东莞云上公司"
},
{
value: "东营云上公司",
label: "东营云上公司"
},
{
value: "中山云上公司",
label: "中山云上公司"
},
{
value: "重庆云上公司",
label: "重庆云上公司"
},
{
value: "郑州云上公司",
label: "郑州云上公司"
},
{
value: "贵州云上公司",
label: "贵州云上公司"
},
{
value: "开封云上公司",
label: "开封云上公司"
}
],
regPark: "", regPark: "",
cSchemeNo: "", cSchemeNo: "",
cServiceNo: "", cServiceNo: "",
...@@ -375,28 +413,37 @@ export default { ...@@ -375,28 +413,37 @@ export default {
cScheme: "", cScheme: "",
cSchemeOptions: [ cSchemeOptions: [
{ {
value: "ytj", value: "dqr",
label: "已提交" label: "待确认"
}, },
{ {
value: "yfk", value: "ywc",
label: "已付款" label: "已完成"
}, },
{ {
value: "yzf", value: "yzf",
label: "已作废" label: "已作废"
}
],
pType: "",
pTypeOptions: [
{
label: "个体商户注册刻章服务",
value: "个体商户注册刻章服务"
}, },
{ {
value: "ytk", label: "内资小规模有限公司",
label: "已退款" value: "内资小规模有限公司"
},
{
label: "内资小规模有限公司注册刻章服务",
value: "内资小规模有限公司注册刻章服务"
} }
], ],
pType: "",
pTypeOptions: [],
currentPage1: 1, currentPage1: 1,
currentPage2: 1, currentPage2: 1,
cloudData: [], cloudData: [],
dataCount:1, dataCount: 1
// 获取详情数据 // 获取详情数据
}; };
}, },
...@@ -516,7 +563,7 @@ export default { ...@@ -516,7 +563,7 @@ export default {
}); });
this.companyData = dataList; this.companyData = dataList;
this.dataCount = res.data.dataCount; this.dataCount = res.data.dataCount;
console.log(res.data,'!!!!!!!!!!!!!!!!!!!') console.log(res.data, "!!!!!!!!!!!!!!!!!!!");
console.log(this.companyData); console.log(this.companyData);
} }
...@@ -578,7 +625,9 @@ export default { ...@@ -578,7 +625,9 @@ export default {
} }
}, },
watch: {}, watch: {},
created() {}, created() {
console.log(JSON.parse(this.$route.query.data));
},
mounted() { mounted() {
this.getListData(); this.getListData();
} }
......
...@@ -4,9 +4,20 @@ ...@@ -4,9 +4,20 @@
<script> <script>
export default { export default {
data() { data() {
return {}; return {
companyParams: {}
};
}, },
created() {} created() {
if (this.$route.query) {
this.companyParams = this.$route.query;
this.$router.push({
path: "/companylist",
query: {data:JSON.stringify(this.companyParams)}
});
console.log(123, this.companyParams);
}
}
}; };
</script> </script>
<style lang="scss"> <style lang="scss">
......
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