Commit e4a74084 by 刘泽奇

123

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