Commit ab1ffdd3cd0836a96091dd7d48b62f9068977f9a

Authored by 杨鑫
1 parent e3789a75

'更新'

admin-web-master/src/App.vue
... ... @@ -583,7 +583,7 @@ export default {
583 583 }
584 584 }
585 585 .el-table__body tr.current-row>td.el-table__cell, .el-table__body tr.selection-row>td.el-table__cell{
586   - background-color: #DEEBE2 !important;
  586 + background-color: transparent;
587 587 }
588 588 .el-checkbox__input.is-checked+.el-checkbox__label{
589 589 color:#3F9B6A;
... ...
admin-web-master/src/utils/request.js
... ... @@ -17,10 +17,10 @@ let baseURL = ''
17 17 if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) {
18 18  
19 19 // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1;
20   - // baseURL = 'https://jy.scjysm.asia:18086/meserver/admin-server';
  20 + baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server';
21 21 // baseURL = 'http://172.16.61.125:9003';
22 22 // baseURL = 'http://10.0.0.51:9003';
23   - baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1;
  23 + // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1;
24 24 // baseURL = 'http://192.168.2.225:9003';
25 25  
26 26 } else {
... ...
admin-web-master/src/views/customer/icManagement/index.vue
... ... @@ -2,7 +2,7 @@
2 2 <div style="background-color:#f7f7f7;padding:10px 10px;">
3 3 <div class="zhuti" v-if="ggXin==false && detbox==false">
4 4 <div style="height:58px;line-height:58px;">
5   - <div style="color:#0006"> <span>商户寻租管理</span> <span style="padding:0 5px;">></span> <span
  5 + <div style="color:#0006"> <span>商户意向管理</span> <span style="padding:0 5px;">></span> <span
6 6 style="color:#000000e6">意向客户管理</span></div>
7 7 </div>
8 8 <div>
... ...
admin-web-master/src/views/customer/rsaManagement/index.vue
... ... @@ -2,8 +2,8 @@
2 2 <div style="background-color:#f7f7f7;padding:10px 10px;">
3 3 <div class="zhuti" v-if="ggXin == false && detbox==false && genjinShow==false && tanpanShow ==false">
4 4 <div style="height:58px;line-height:58px;">
5   - <div style="color:#0006"> <span>商户寻租管理</span> <span style="padding:0 5px;">></span> <span
6   - style="color:#000000e6">寻租申请管理</span></div>
  5 + <div style="color:#0006"> <span>商户意向管理</span> <span style="padding:0 5px;">></span> <span
  6 + style="color:#000000e6">意向申请管理</span></div>
7 7 </div>
8 8 <div>
9 9 <!-- 搜索 -->
... ...
admin-web-master/src/views/serve/MarkActivity/index.vue
... ... @@ -313,9 +313,21 @@
313 313 </div>
314 314 <div style="padding: 15px;">
315 315 <div style="padding: 0px 20px 0px 0px">
316   - <el-table :data="ziyuanData" highlight-current-row @current-change="handleSelectionChange"
317   - :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}">
318 316  
  317 + <el-table
  318 + :data="ziyuanData"
  319 + highlight-current-row
  320 + ref="multipleTable"
  321 + :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
  322 + @row-click="handleRowClick"
  323 + >
  324 + <el-table-column
  325 + label="选择"
  326 + width="55">
  327 + <template slot-scope="scope">
  328 + <el-radio v-model="selectedRow" inert :label="scope.row" >&nbsp;</el-radio>
  329 + </template>
  330 + </el-table-column>
319 331 <el-table-column label="序号" min-width="8%">
320 332 <template slot-scope="scope">
321 333 {{scope.$index + 1}}
... ... @@ -497,7 +509,8 @@
497 509 }],
498 510 },
499 511 mingtotal:0,
500   - mingPage:1
  512 + mingPage:1,
  513 + selectedRow:null
501 514 }
502 515 },
503 516 created() {
... ... @@ -565,7 +578,7 @@
565 578 this.getAll()
566 579 })
567 580 }
568   -
  581 + this.selectedRow = null
569 582 }else {
570 583 this.$message({
571 584 message: '请填写完整信息',
... ... @@ -608,7 +621,7 @@
608 621 ids.map(res => {
609 622 changAlls({
610 623 id: res,
611   - pageNumber: 1,
  624 + pageNumber: 0,
612 625 pageSize: 10,
613 626 }).then(item => {
614 627  
... ... @@ -636,12 +649,13 @@
636 649 ids.map(res => {
637 650 changAlls({
638 651 id: res,
639   - pageNumber: 1,
  652 + pageNumber: 0,
640 653 pageSize: 10,
641 654 }).then(item => {
642 655  
643 656 item.data.content.map(ids => {
644 657 this.addziyuanData.push(ids)
  658 + this.selectedRow = ids
645 659 })
646 660  
647 661 })
... ... @@ -663,7 +677,11 @@
663 677 this.mingPage = val
664 678 },
665 679 closeFn(val) {
  680 + this.getAll()
666 681 this.ggXin = false
  682 + this.addziyuanData =[]
  683 + this.selectedRow = null
  684 +
667 685 },
668 686  
669 687 // 查询按钮
... ... @@ -684,25 +702,24 @@
684 702 },
685 703  
686 704 minSev() {
687   - if(this.addziyuanData.length == 1){
688   - this.$message({
689   - message: '场地只能添加一个',
690   - })
691   - }else{
692   - this.addziyuanData = this.multipleSelection
693   - }
  705 + this.addziyuanData = []
  706 + this.addziyuanData.push(this.selectedRow)
694 707 this.addziyuan = false
695 708 this.multipleSelection = []
696 709  
  710 +this.selectedRow = null
697 711 },
698 712 mingClose() {
  713 +
699 714 this.multipleSelection = []
700 715 this.addziyuan = false
701   - },
702   - handleSelectionChange(val) {
  716 + this.selectedRow = null
  717 +
703 718  
704   - this.multipleSelection.push(val)
705 719 },
  720 + handleRowClick(row) {
  721 + this.selectedRow = row; // 点击行时选中对应的单选框
  722 + },
706 723 deltab(item) {
707 724 const h = this.$createElement;
708 725 this.$msgbox({
... ... @@ -784,7 +801,10 @@
784 801 },
785 802  
786 803 addziDel(index){
787   - this.addziyuanData.splice(index, 1);
  804 +
  805 + this.addziyuanData.splice(index, 1)
  806 + this.selectedRow = null
  807 +
788 808 }
789 809  
790 810 }
... ... @@ -792,6 +812,9 @@
792 812 </script>
793 813  
794 814 <style scoped>
  815 +/deep/ .el-table__body tr.current-row {
  816 + background-color: transparent !important;
  817 +}
795 818 .zhuti {
796 819 padding: 0 20px 20px 20px;
797 820 min-height: calc(100vh - 50px - 20px);
... ...
admin-web-master/src/views/serve/Merchant/index.vue
... ... @@ -342,10 +342,16 @@
342 342 <div style="padding: 0px 20px 0px 0px">
343 343 <el-table :data="ziyuanData"
344 344 highlight-current-row
345   - @current-change="handleSelectionChange"
  345 + @row-click="handleRowClick"
346 346 :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
347 347 >
348   -
  348 +<el-table-column
  349 + label="选择"
  350 + width="55">
  351 + <template slot-scope="scope">
  352 + <el-radio v-model="selectedRow" inert :label="scope.row" >&nbsp;</el-radio>
  353 + </template>
  354 + </el-table-column>
349 355 <el-table-column label="序号" min-width="8%" >
350 356 <template slot-scope="scope">
351 357 {{scope.$index + 1}}
... ... @@ -483,6 +489,7 @@
483 489 trigger: 'change'
484 490 }, ],
485 491 },
  492 + selectedRow:null
486 493 }
487 494 },
488 495 created() {
... ... @@ -553,6 +560,7 @@
553 560 this.getAll()
554 561 })
555 562 }
  563 + this.selectedRow = null
556 564 }else {
557 565 this.$message({
558 566 message: '请填写完整信息',
... ... @@ -599,7 +607,7 @@
599 607 ids.map(res => {
600 608 changAlls({
601 609 id: res,
602   - pageNumber: 1,
  610 + pageNumber: 0,
603 611 pageSize: 10,
604 612 }).then(item => {
605 613  
... ... @@ -630,7 +638,10 @@
630 638  
631 639 closeFn(val) {
632 640 this.addziyuanData =[]
  641 + this.getAll()
633 642 this.ggXin = false
  643 + this.selectedRow = null
  644 +
634 645 },
635 646 //查看合同
636 647 lookHetong(val) {
... ... @@ -663,12 +674,13 @@
663 674 ids.map(res => {
664 675 changAlls({
665 676 id: res,
666   - pageNumber: 1,
  677 + pageNumber: 0,
667 678 pageSize: 10,
668 679 }).then(item => {
669 680  
670 681 item.data.content.map(ids => {
671 682 this.addziyuanData.push(ids)
  683 + this.selectedRow = ids
672 684 })
673 685  
674 686 })
... ... @@ -679,27 +691,20 @@
679 691  
680 692 },
681 693 minSev() {
682   -
683   - if(this.addziyuanData.length == 1){
684   - this.$message({
685   - message: '场地只能添加一个',
686   - })
687   - }else{
688   - this.addziyuanData = this.multipleSelection
689   - }
  694 +this.addziyuanData = []
  695 +this.addziyuanData.push(this.selectedRow)
690 696 this.addziyuan = false
691 697 this.multipleSelection = []
  698 + this.selectedRow = null
692 699 },
693 700 mingClose(){
694 701 this.multipleSelection =[]
695 702 this.addziyuan = false
  703 + this.selectedRow = null
696 704 },
697   - handleSelectionChange(val) {
698   -
699   - this.multipleSelection.push(val)
700   - },
701   -
702   -
  705 + handleRowClick(row) {
  706 + this.selectedRow = row; // 点击行时选中对应的单选框
  707 + },
703 708 deltab(item){
704 709 const h = this.$createElement;
705 710 this.$msgbox({
... ... @@ -751,6 +756,7 @@
751 756 },
752 757 handleDelete(index){
753 758 this.addziyuanData.splice(index, 1)
  759 + this.selectedRow = null
754 760 }
755 761 }
756 762 }
... ...
lvdao-miniapp/manifest.json
1 1 {
2 2 "name" : "绿道",
3   - "appid" : "__UNI__189D96A",
  3 + "appid" : "__UNI__F034047",
4 4 "description" : "",
5 5 "versionName" : "1.0.2",
6 6 "versionCode" : "100",
... ...