|
@@ -620,33 +620,17 @@
|
620
|
620
|
:visible.sync="ArticleVisible"
|
621
|
621
|
width="30%"
|
622
|
622
|
center>
|
623
|
|
- <el-form ref="articeform" :model="articeform" label-width="110px">
|
624
|
|
- <el-form-item label="文章标题:">
|
|
623
|
+ <el-form ref="articeform" :model="articeform" label-width="110px" :rules="rules">
|
|
624
|
+ <el-form-item label="文章标题:" required prop="title">
|
625
|
625
|
<el-input v-model="articeform.title"></el-input>
|
626
|
626
|
</el-form-item>
|
627
|
|
- <el-form-item label="排序值:">
|
|
627
|
+ <el-form-item label="排序值:" required prop="sort">
|
628
|
628
|
<el-input v-model="articeform.sort" type="number"></el-input>
|
|
629
|
+ <p class="tips">请输入1-99的整数,数值越小,模块排序越靠前</p>
|
629
|
630
|
</el-form-item>
|
630
|
|
- <el-form-item label="文章分类:">
|
631
|
|
- <el-select v-model="articeform.category" style="width:49%;float:left;">
|
632
|
|
- <el-option
|
633
|
|
- v-for="item in articeType"
|
634
|
|
- :key="item.id"
|
635
|
|
- :label="item.name"
|
636
|
|
- :value="item.id">
|
637
|
|
- </el-option>
|
638
|
|
- </el-select>
|
639
|
|
- <el-select v-model="articeform.categoryone" style="width:49%;float:right;">
|
640
|
|
- <el-option
|
641
|
|
- v-for="item in articeTypelist"
|
642
|
|
- :key="item.id"
|
643
|
|
- :label="item.name"
|
644
|
|
- :value="item.id">
|
645
|
|
- </el-option>
|
646
|
|
- </el-select>
|
647
|
|
- </el-form-item>
|
648
|
|
- <el-form-item label="展示条数:">
|
|
631
|
+ <el-form-item label="首页展示条数:" required prop="number">
|
649
|
632
|
<el-input v-model="articeform.number"></el-input>
|
|
633
|
+ <p class="tips">请输入1-9的整数,最大数量为9</p>
|
650
|
634
|
</el-form-item>
|
651
|
635
|
</el-form>
|
652
|
636
|
<span slot="footer" class="dialog-footer">
|
|
@@ -658,16 +642,16 @@
|
658
|
642
|
<el-dialog
|
659
|
643
|
title="编辑活动列表"
|
660
|
644
|
:visible.sync="activityVisible"
|
661
|
|
- width="30%"
|
|
645
|
+ width="32%"
|
662
|
646
|
center>
|
663
|
|
- <el-form label-width="100px" model="activitform" ref="activitform">
|
664
|
|
- <el-form-item label="模块标题:">
|
|
647
|
+ <el-form label-width="110px" :model="activitform" ref="activitform" :rules="rules">
|
|
648
|
+ <el-form-item label="模块标题:" required prop="title">
|
665
|
649
|
<el-input v-model="activitform.title"></el-input>
|
666
|
650
|
</el-form-item>
|
667
|
|
- <el-form-item label="排序:">
|
|
651
|
+ <el-form-item label="排序:" required prop="sort">
|
668
|
652
|
<el-input v-model="activitform.sort"></el-input>
|
669
|
653
|
</el-form-item>
|
670
|
|
- <el-form-item label="首页展示条数:">
|
|
654
|
+ <el-form-item label="首页展示条数:" required prop="number">
|
671
|
655
|
<el-input v-model="activitform.number"></el-input>
|
672
|
656
|
</el-form-item>
|
673
|
657
|
</el-form>
|
|
@@ -1480,10 +1464,15 @@
|
1480
|
1464
|
<div class="img">
|
1481
|
1465
|
<img :src="it.imgs" style="width:100%;height:100%" alt />
|
1482
|
1466
|
</div>
|
1483
|
|
- <div class="detail">
|
|
1467
|
+ <div class="detail" v-if="it.title != ''">
|
1484
|
1468
|
<p class="detailTitle">{{it.title}}</p>
|
1485
|
1469
|
<!-- <p class="detailMessage"></p> -->
|
1486
|
|
- </div>
|
|
1470
|
+ </div>
|
|
1471
|
+ <div class="detail" v-else-if="it.title ==''">
|
|
1472
|
+ <div class="noImg">
|
|
1473
|
+ <img src="../../../static/images/none2.png" alt />
|
|
1474
|
+ </div>
|
|
1475
|
+ </div>
|
1487
|
1476
|
</div>
|
1488
|
1477
|
</div>
|
1489
|
1478
|
</div>
|
|
@@ -1501,8 +1490,11 @@
|
1501
|
1490
|
</div>
|
1502
|
1491
|
</div>
|
1503
|
1492
|
<div class="commonBox">
|
1504
|
|
- <div class="commonMessage" v-html="item.Hospitals.introduction"></div>
|
1505
|
|
- </div>
|
|
1493
|
+ <div class="commonMessage" v-html="item.Hospitals.introduction" v-if="item.Hospitals.introduction != ''"></div>
|
|
1494
|
+ <div class="noImg" v-else-if="item.Hospitals.introduction == ''">
|
|
1495
|
+ <img src="../../../static/images/none2.png" alt/>
|
|
1496
|
+ </div>
|
|
1497
|
+ </div>
|
1506
|
1498
|
</div>
|
1507
|
1499
|
|
1508
|
1500
|
<!-- 科室介绍 -->
|
|
@@ -1519,7 +1511,10 @@
|
1519
|
1511
|
</div>
|
1520
|
1512
|
<div class="commonBox">
|
1521
|
1513
|
|
1522
|
|
- <div class="commonMessage" v-html="item.Offices.introduction"></div>
|
|
1514
|
+ <div class="commonMessage" v-html="item.Offices.introduction" v-if="item.Offices.introduction!=''"></div>
|
|
1515
|
+ <div class="noImg" v-else-if="item.Offices.introduction == ''">
|
|
1516
|
+ <img src="../../../static/images/none2.png" alt/>
|
|
1517
|
+ </div>
|
1523
|
1518
|
</div>
|
1524
|
1519
|
</div>
|
1525
|
1520
|
|
|
@@ -1540,10 +1535,15 @@
|
1540
|
1535
|
<div class="img">
|
1541
|
1536
|
<img :src="doc.dochead" style="width:100%;height:100%" alt />
|
1542
|
1537
|
</div>
|
1543
|
|
- <div class="detail">
|
|
1538
|
+ <div class="detail" v-if="doc.docintroduction != ''">
|
1544
|
1539
|
<p class="detailTitle">{{doc.doc_name}}</p>
|
1545
|
|
- <p class="detailMessage" v-html="doc.docintroduction"></p>
|
1546
|
|
- </div>
|
|
1540
|
+ <p class="detailMessage" v-html="doc.docintroduction"></p>
|
|
1541
|
+ </div>
|
|
1542
|
+ <div class="detail" v-else-if="doc.docintroduction == ''">
|
|
1543
|
+ <div class="noImg">
|
|
1544
|
+ <img src="../../../static/images/none2.png" alt />
|
|
1545
|
+ </div>
|
|
1546
|
+ </div>
|
1547
|
1547
|
</div>
|
1548
|
1548
|
</div>
|
1549
|
1549
|
</div>
|
|
@@ -1582,9 +1582,14 @@
|
1582
|
1582
|
<div class="img">
|
1583
|
1583
|
<img :src="it.poster_photo" style="widht:100%;height:100%" alt />
|
1584
|
1584
|
</div>
|
1585
|
|
- <div class="detail">
|
|
1585
|
+ <div class="detail" v-if="it.title !=''">
|
1586
|
1586
|
<p class="detailTitle">{{it.title}}</p>
|
1587
|
1587
|
</div>
|
|
1588
|
+ <div class="detail" v-else-if="it.title == ''">
|
|
1589
|
+ <div class="noImg">
|
|
1590
|
+ <img src="../../../static/images/none2.png" alt />
|
|
1591
|
+ </div>
|
|
1592
|
+ </div>
|
1588
|
1593
|
</div>
|
1589
|
1594
|
</div>
|
1590
|
1595
|
</div>
|
|
@@ -1604,7 +1609,7 @@
|
1604
|
1609
|
<div><span>{{item.title}}: {{item.Hosaddress.address}}</span></div>
|
1605
|
1610
|
</div>
|
1606
|
1611
|
<div v-if="item.mode_type == 3">
|
1607
|
|
- <div class="oldmodeone" v-for="it in Connectways" :key="it.id">
|
|
1612
|
+ <div v-for="it in Connectways" :key="it.id">
|
1608
|
1613
|
<span>{{it.title}}: {{it.content}}</span><br>
|
1609
|
1614
|
</div>
|
1610
|
1615
|
</div>
|
|
@@ -1793,7 +1798,7 @@
|
1793
|
1798
|
<div class="macgic">
|
1794
|
1799
|
<div class="macgicone" v-for="item in this.navigationdatatwo" :key="item.id">
|
1795
|
1800
|
<div class="macgicfive">
|
1796
|
|
- <img :src="item.navimages" style="width:30px; height:30px">
|
|
1801
|
+ <img :src="item.nonavimages" style="width:30px; height:30px">
|
1797
|
1802
|
</div>
|
1798
|
1803
|
<div class="macgicsix">
|
1799
|
1804
|
{{item.navtitle}}
|
|
@@ -1941,7 +1946,7 @@ import { copyFile } from 'fs';
|
1941
|
1946
|
import { truncateSync } from 'fs';
|
1942
|
1947
|
import { isAbsolute } from 'path';
|
1943
|
1948
|
import { stringify } from 'querystring';
|
1944
|
|
-import {checkNumber,uParseTime} from "@/utils/tools";
|
|
1949
|
+import {checkNumber,uParseTime,checkSort} from "@/utils/tools";
|
1945
|
1950
|
export default {
|
1946
|
1951
|
name: "preview",
|
1947
|
1952
|
components: {
|
|
@@ -1960,6 +1965,15 @@ export default {
|
1960
|
1965
|
callback();
|
1961
|
1966
|
}
|
1962
|
1967
|
};
|
|
1968
|
+
|
|
1969
|
+
|
|
1970
|
+ var checkSortRule = (rule,value,callback)=>{
|
|
1971
|
+ if(!checkSort(value)){
|
|
1972
|
+ callback(new Error('请输入1-9的整数'));
|
|
1973
|
+ }else{
|
|
1974
|
+ callback();
|
|
1975
|
+ }
|
|
1976
|
+ }
|
1963
|
1977
|
|
1964
|
1978
|
return {
|
1965
|
1979
|
radio:3,
|
|
@@ -2389,6 +2403,7 @@ export default {
|
2389
|
2403
|
piclink:[{required:true,message:"请选择图片链接"}],
|
2390
|
2404
|
doc_name:[{required:true,message:"请编辑医生姓名"}],
|
2391
|
2405
|
defineaddress:[{required:true,message:"请填写站外地址"}],
|
|
2406
|
+ number:[{required:true,message:"请填写活动条数"},{validator:checkSortRule}],
|
2392
|
2407
|
},
|
2393
|
2408
|
keData: { token: '' ,key: ''},
|
2394
|
2409
|
navigationdata:[],
|
|
@@ -3424,7 +3439,6 @@ export default {
|
3424
|
3439
|
},
|
3425
|
3440
|
|
3426
|
3441
|
editModelByID(id,modetype,index){
|
3427
|
|
-
|
3428
|
3442
|
if(modetype == 1){
|
3429
|
3443
|
this.adddialogVisible = true;
|
3430
|
3444
|
geteditRotationImages(id,this.addform).then(response=>{
|
|
@@ -3492,10 +3506,13 @@ export default {
|
3492
|
3506
|
|
3493
|
3507
|
if(modetype == 6){
|
3494
|
3508
|
this.ArticleVisible = true;
|
|
3509
|
+ console.log("id是说的",id)
|
3495
|
3510
|
editGetArticlistDetail(id).then(response=>{
|
3496
|
3511
|
if(response.data.state == 1){
|
3497
|
3512
|
var articlelist = response.data.data.articlelist;
|
3498
|
3513
|
this.articeform = response.data.data.articlelist;
|
|
3514
|
+ console.log("articlelist",articlelist)
|
|
3515
|
+
|
3499
|
3516
|
}
|
3500
|
3517
|
})
|
3501
|
3518
|
}
|
|
@@ -4463,8 +4480,8 @@ export default {
|
4463
|
4480
|
let qrcode = new QRCode('qrcode', {
|
4464
|
4481
|
width: 100,
|
4465
|
4482
|
height: 100, // 高度
|
4466
|
|
- // text:'http://microweb.kuyicloud.com/#/microHome?orgid='+this.$store.getters.xt_user.org_id, // 二维码内容
|
4467
|
|
- text:'http://jk.test.sgjyun.com/#/microHome?orgid='+this.$store.getters.xt_user.org_id, // 二维码内容
|
|
4483
|
+ text:'http://microweb.kuyicloud.com/#/microHome?orgid='+this.$store.getters.xt_user.org_id, // 二维码内容
|
|
4484
|
+ // text:'http://jk.test.sgjyun.com/#/microHome?orgid='+this.$store.getters.xt_user.org_id, // 二维码内容
|
4468
|
4485
|
|
4469
|
4486
|
})
|
4470
|
4487
|
console.log(qrcode)
|
|
@@ -4753,8 +4770,18 @@ export default {
|
4753
|
4770
|
getLikeMacAddressById(id,this.linkform).then(response=>{
|
4754
|
4771
|
if(response.data.state ==1){
|
4755
|
4772
|
var magiclink = response.data.data.magiclink;
|
4756
|
|
- this.linkformfive = response.data.data.magiclink;
|
|
4773
|
+ if(magiclink.linktype == 2){
|
|
4774
|
+ this.definetwo = true;
|
|
4775
|
+ }
|
|
4776
|
+ if(magiclink.linktype ==3){
|
|
4777
|
+ this.definethree = true;
|
|
4778
|
+ }
|
|
4779
|
+ if(magiclink.linktype == 4){
|
|
4780
|
+ this.definefour = true;
|
|
4781
|
+ }
|
|
4782
|
+ this.linkformfive = magiclink;
|
4757
|
4783
|
console.log("中秋快乐",magiclink)
|
|
4784
|
+
|
4758
|
4785
|
}
|
4759
|
4786
|
})
|
4760
|
4787
|
},
|
|
@@ -4807,27 +4834,28 @@ export default {
|
4807
|
4834
|
// this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4808
|
4835
|
}
|
4809
|
4836
|
if(model.mode_type == 2){
|
4810
|
|
- // this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4811
|
|
- this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4837
|
+ this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4838
|
+ // this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4812
|
4839
|
}
|
4813
|
4840
|
if(model.mode_type == 3){
|
4814
|
|
- // this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4815
|
|
- this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4841
|
+ this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4842
|
+ // this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4816
|
4843
|
}
|
4817
|
4844
|
if(model.mode_type == 4){
|
4818
|
|
- // this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4819
|
|
- this.editmacform.marginaddress = "http:/jk.test.sgjyun.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4845
|
+ this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4846
|
+ // this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4820
|
4847
|
}
|
4821
|
4848
|
if(model.mode_type == 5){
|
4822
|
|
- // this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4849
|
+ // this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/departmentEnvironment?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4850
|
+ this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4823
|
4851
|
}
|
4824
|
4852
|
if(model.mode_type == 6){
|
4825
|
|
- // this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4826
|
|
- this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4853
|
+ this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4854
|
+ // this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4827
|
4855
|
}
|
4828
|
4856
|
if(model.mode_type == 7){
|
4829
|
|
- // this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4830
|
|
- this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4857
|
+ this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4858
|
+ // this.editmacform.marginaddress = "http://jk.test.sgjyun.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4831
|
4859
|
}
|
4832
|
4860
|
if(model.mode_type == 8){
|
4833
|
4861
|
// this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
@@ -4860,27 +4888,28 @@ export default {
|
4860
|
4888
|
// this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4861
|
4889
|
}
|
4862
|
4890
|
if(model.mode_type == 2){
|
4863
|
|
- // this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4864
|
|
- this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4891
|
+ this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4892
|
+ // this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/hospitalIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4865
|
4893
|
}
|
4866
|
4894
|
if(model.mode_type == 3){
|
4867
|
|
- // this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4868
|
|
- this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4895
|
+ this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4896
|
+ // this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/officeIntroduction?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4869
|
4897
|
}
|
4870
|
4898
|
if(model.mode_type == 4){
|
4871
|
|
- // this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4872
|
|
- this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4899
|
+ this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4900
|
+ // this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4873
|
4901
|
}
|
4874
|
4902
|
if(model.mode_type == 5){
|
|
4903
|
+ this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/departmentEnvironment?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4875
|
4904
|
// this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4876
|
4905
|
}
|
4877
|
4906
|
if(model.mode_type == 6){
|
4878
|
|
- // this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4879
|
|
- this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4907
|
+ this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4908
|
+ // this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/news?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4880
|
4909
|
}
|
4881
|
4910
|
if(model.mode_type == 7){
|
4882
|
|
- // this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4883
|
|
- this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4911
|
+ this.macgicform.linkaddress = "http://microweb.kuyicloud.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
4912
|
+ // this.macgicform.linkaddress = "http://jk.test.sgjyun.com/#/activity?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
4884
|
4913
|
}
|
4885
|
4914
|
if(model.mode_type == 8){
|
4886
|
4915
|
// this.editmacform.marginaddress = "http://microweb.kuyicloud.com/#/medicalTeam?id="+model.id+"&orgid="+this.$store.getters.xt_user.org_id;
|
|
@@ -4928,15 +4957,15 @@ export default {
|
4928
|
4957
|
}
|
4929
|
4958
|
|
4930
|
4959
|
if(this.navigationlinkform.navitionlinktype == 1){
|
4931
|
|
- // this.navigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
4932
|
|
- this.navigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
|
4960
|
+ this.navigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
|
4961
|
+ // this.navigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
4933
|
4962
|
}
|
4934
|
4963
|
if(this.navigationlinkform.navitionlinktype == 2){
|
4935
|
4964
|
this.navigationlinkform.linkaddress = "http://shop.kuyicloud.com/app/index.php?i=2&c=entry&m=ewei_shopv2&do=mobile&fxtoken=bdc5659cbd1bd67baa9af215b0d6ae4c&fxorgid=3877×tamp=1571050598&fxadmin=185&wxref=mp.weixin.qq.com#wechat_redirect";
|
4936
|
4965
|
}
|
4937
|
4966
|
if(this.navigationlinkform.navitionlinktype == 3){
|
4938
|
|
- // this.navigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#/contactus?orgid="+this.$store.getters.xt_user.org_id;
|
4939
|
|
- this.navigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#/contactus?orgid="+this.$store.getters.xt_user.org_id;
|
|
4967
|
+ this.navigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#/contactus?orgid="+this.$store.getters.xt_user.org_id;
|
|
4968
|
+ // this.navigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#/contactus?orgid="+this.$store.getters.xt_user.org_id;
|
4940
|
4969
|
}
|
4941
|
4970
|
this.$refs[formName].validate((valid)=>{
|
4942
|
4971
|
if(valid){
|
|
@@ -5005,16 +5034,16 @@ export default {
|
5005
|
5034
|
this.editnavigationlinkform.navitionlinktype = navigationlinktypes;
|
5006
|
5035
|
|
5007
|
5036
|
if(this.editnavigationlinkform.navitionlinktype == 1){
|
5008
|
|
- // this.editnavigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
5009
|
|
- this.editnavigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
|
5037
|
+ this.editnavigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
|
5038
|
+ // this.editnavigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#/microHome?orgid="+this.$store.getters.xt_user.org_id;
|
5010
|
5039
|
}
|
5011
|
5040
|
if(this.editnavigationlinkform.navitionlinktype == 2){
|
5012
|
5041
|
this.editnavigationlinkform.linkaddress = "http://shop.kuyicloud.com/app/index.php?i=2&c=entry&m=ewei_shopv2&do=mobile&fxtoken=bdc5659cbd1bd67baa9af215b0d6ae4c&fxorgid=3877×tamp=1571050598&fxadmin=185&wxref=mp.weixin.qq.com#wechat_redirect";
|
5013
|
5042
|
// this.editnavigationlinkform.linkaddress = "http://shop.kuyicloud.com/app/index.php?i=2&c=entry&m=ewei_shopv2&do=mobile&fxtoken=bdc5659cbd1bd67baa9af215b0d6ae4c&fxorgid=3877×tamp=1571050598&fxadmin=185&wxref=mp.weixin.qq.com#wechat_redirect";
|
5014
|
5043
|
}
|
5015
|
5044
|
if(this.editnavigationlinkform.navitionlinktype == 3){
|
5016
|
|
- // this.editnavigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#//contact?orgid="+this.$store.getters.xt_user.org_id;
|
5017
|
|
- this.editnavigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#//contact?orgid="+this.$store.getters.xt_user.org_id;
|
|
5045
|
+ this.editnavigationlinkform.linkaddress = "http://microweb.kuyicloud.com/#//contact?orgid="+this.$store.getters.xt_user.org_id;
|
|
5046
|
+ // this.editnavigationlinkform.linkaddress = "http://jk.test.sgjyun.com/#//contact?orgid="+this.$store.getters.xt_user.org_id;
|
5018
|
5047
|
}
|
5019
|
5048
|
|
5020
|
5049
|
|
|
@@ -5266,6 +5295,7 @@ export default {
|
5266
|
5295
|
this.GetAllActivity();
|
5267
|
5296
|
this.GetNavigationData();
|
5268
|
5297
|
this.getAllModelTitle();
|
|
5298
|
+ // this.getData();
|
5269
|
5299
|
},
|
5270
|
5300
|
// updated(){
|
5271
|
5301
|
// let obj = document.getElementById('content');
|
|
@@ -6800,6 +6830,16 @@ export default {
|
6800
|
6830
|
-webkit-box-orient: vertical;
|
6801
|
6831
|
// border: solid 1px red;
|
6802
|
6832
|
}
|
|
6833
|
+ .noImg {
|
|
6834
|
+ width: 6.25rem;
|
|
6835
|
+ height: 6.25rem;
|
|
6836
|
+ margin: 0 auto;
|
|
6837
|
+ img {
|
|
6838
|
+ width: 6.25rem;
|
|
6839
|
+ height: 6.25rem;
|
|
6840
|
+ }
|
|
6841
|
+ }
|
|
6842
|
+
|
6803
|
6843
|
}
|
6804
|
6844
|
// border: solid 1px red;
|
6805
|
6845
|
}
|
|
@@ -6817,6 +6857,15 @@ export default {
|
6817
|
6857
|
padding: 1.125rem 1.3125rem 1.3125rem 1.3125rem;
|
6818
|
6858
|
overflow: hidden;
|
6819
|
6859
|
text-overflow: ellipsis;
|
|
6860
|
+ .noImg {
|
|
6861
|
+ width: 6.25rem;
|
|
6862
|
+ height: 6.25rem;
|
|
6863
|
+ margin: 0 auto;
|
|
6864
|
+ img {
|
|
6865
|
+ width: 6.25rem;
|
|
6866
|
+ height: 6.25rem;
|
|
6867
|
+ }
|
|
6868
|
+ }
|
6820
|
6869
|
}
|
6821
|
6870
|
.commonImg {
|
6822
|
6871
|
width: 18.4375rem;
|