|
@@ -0,0 +1,99 @@
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
+<html lang="zh-CN" style="font-size: 50px;">
|
|
|
|
+
|
|
|
|
+<head>
|
|
|
|
+ <title>采购单位画像</title>
|
|
|
|
+
|
|
|
|
+ <!--引入公共资源头部-->
|
|
|
|
+ {{include "/big-member/meta.html"}}
|
|
|
|
+
|
|
|
|
+ <!--S-当前页必定需要预加载的资源-->
|
|
|
|
+ <link rel="preload" as="style" href=//cdn-common.jianyu360.com/cdn/lib/reset-css/5.0.1/reset.min.css />
|
|
|
|
+
|
|
|
|
+ <!--E-当前页必定需要预加载的资源-->
|
|
|
|
+
|
|
|
|
+ <!--S-当前页面的css资源-->
|
|
|
|
+ <link rel="stylesheet" href=//cdn-common.jianyu360.com/cdn/lib/vant/2.12.24/lib/index.css />
|
|
|
|
+ <link rel="stylesheet" href=//cdn-common.jianyu360.com/cdn/lib/reset-css/5.0.1/reset.min.css />
|
|
|
|
+ <link rel="stylesheet"
|
|
|
|
+ href='{{Cdns .Host "seo" "cdn"|SafeUrl}}/common-module/mainSearch/css/j-icons.css?v={{Msg "seo" "version"}}' />
|
|
|
|
+ <!--E-当前页面的css资源-->
|
|
|
|
+ <style>
|
|
|
|
+ .skeleton {
|
|
|
|
+ height: 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-content: center;
|
|
|
|
+ background-color: #fff;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .working {
|
|
|
|
+ width: 4rem;
|
|
|
|
+ height: 4rem;
|
|
|
|
+ margin: -0.4rem auto 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ </style>
|
|
|
|
+</head>
|
|
|
|
+
|
|
|
|
+<body>
|
|
|
|
+ <div class="j-container">
|
|
|
|
+ {{include "/big-member/header.html"}}
|
|
|
|
+ <div id="portrayal_loading" ref="container" class="j-main" v-cloak>
|
|
|
|
+ <div class="skeleton">
|
|
|
|
+ <img class="working" src="/jyapp/big-member/image/working.gif" alt="">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!--S-必定需要预加载的资源-->
|
|
|
|
+ <link rel="preload" as="script" href=//cdn-common.jianyu360.com/cdn/lib/vue/2.6.11/vue.min.js />
|
|
|
|
+ <link rel="preload" as="script" href=//cdn-common.jianyu360.com/cdn/lib/zepto/1.2.0/zepto.min.js />
|
|
|
|
+ <!--E-必定需要预加载的资源-->
|
|
|
|
+
|
|
|
|
+ <!--S-当前页面的资源-->
|
|
|
|
+ <script src=//cdn-common.jianyu360.com/cdn/lib/vue/2.6.11/vue.min.js> </script>
|
|
|
|
+ <script src=//cdn-common.jianyu360.com/cdn/lib/vant/2.12.24/lib/vant.min.js></script>
|
|
|
|
+ <script src=//cdn-common.jianyu360.com/cdn/lib/zepto/1.2.0/zepto.min.js></script>
|
|
|
|
+ {{include "/big-member/commonjs.html"}}
|
|
|
|
+ <script src='{{Cdns .Host "seo" "cdn"|SafeUrl}}/common-module/public/js/setTdk.js?v={{Msg "seo" "version"}}'></script>
|
|
|
|
+ <script src='{{Cdns .Host "seo" "cdn"|SafeUrl}}/jyapp/js/common.js?v={{Msg "seo" "version"}}'></script>
|
|
|
|
+ <script>
|
|
|
|
+ var vNode = {
|
|
|
|
+ delimiters: ['${', '}'],
|
|
|
|
+ el: '#portrayal_loading',
|
|
|
|
+ data: {},
|
|
|
|
+ created() {
|
|
|
|
+ this.getPowerInfo()
|
|
|
|
+ },
|
|
|
|
+ mounted() {},
|
|
|
|
+ methods: {
|
|
|
|
+ getPowerInfo: function () {
|
|
|
|
+ var _this = this
|
|
|
|
+ $.ajax({
|
|
|
|
+ type: 'GET',
|
|
|
|
+ url: '/bigmember/use/isAdd',
|
|
|
|
+ success: function (res) {
|
|
|
|
+ if (res.error_code == 0) {
|
|
|
|
+ if (res.data.entIsNew) {
|
|
|
|
+ location.replace("/jyapp/big/page/client_portrayal?entName=" + utils.getParam('entName') + '&from=client')
|
|
|
|
+ } else {
|
|
|
|
+ location.replace("/jyapp/big/page/unit_portrayal?entName=" + utils.getParam('entName'))
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ _this.$toast(res.error_msg)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ error: function (error) {
|
|
|
|
+ console.log(error)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ new Vue(vNode)
|
|
|
|
+ </script>
|
|
|
|
+</body>
|
|
|
|
+
|
|
|
|
+</html>
|