Sfoglia il codice sorgente

产权交易

rongxin_prod
庞东旭 1 anno fa
parent
commit
ae615c7a5b
3 ha cambiato i file con 22 aggiunte e 4 eliminazioni
  1. +4
    -4
      src/views/project/projectDetail.vue
  2. +11
    -0
      src/views/sunVillage_info/list_signature_pdf.vue
  3. +7
    -0
      src/views/user/signature/signatureList.vue

+ 4
- 4
src/views/project/projectDetail.vue Vedi File

@@ -206,9 +206,9 @@
</van-button> </van-button>
</van-col> </van-col>
</van-row> </van-row>
<van-field v-if="showBtn&&detail.biddingType=='自由竞价'" v-model="price" type="number" input-align="center" placeholder="请输入出价金额" />
<van-field v-if="showBtn&&detail.biddingType!='阶梯竞价'" v-model="price" type="number" input-align="center" placeholder="请输入出价金额" />
<van-row v-if="showBtn" type="flex" justify="space-around"> <van-row v-if="showBtn" type="flex" justify="space-around">
<van-col span="4" v-if="detail.ladderPrice&&detail.biddingType!='自由竞价'" style="text-align: center;line-height: 1rem">
<van-col span="4" v-if="detail.ladderPrice&&detail.biddingType=='阶梯竞价'" style="text-align: center;line-height: 1rem">
<van-button color="#e2e2e2" icon="minus" size="small" @click="sub"></van-button> <van-button color="#e2e2e2" icon="minus" size="small" @click="sub"></van-button>
</van-col> </van-col>
<van-col span="16"> <van-col span="16">
@@ -216,7 +216,7 @@
<div style="display: flex;"> <div style="display: flex;">
<van-button round color="#C21F3A" block @click="offer"> <van-button round color="#C21F3A" block @click="offer">
<p>出价</p> <p>出价</p>
<p v-if="detail.ladderPrice&&detail.biddingType!='自由竞价'">{{price}}元</p>
<p v-if="detail.ladderPrice&&detail.biddingType=='阶梯竞价'">{{price}}元</p>
</van-button> </van-button>


<van-button v-if="isFirst == 'Y'" round color="#C21F3A" block @click="offerFirst" style="margin-left: 10px;"> <van-button v-if="isFirst == 'Y'" round color="#C21F3A" block @click="offerFirst" style="margin-left: 10px;">
@@ -224,7 +224,7 @@
</van-button> </van-button>
</div> </div>
</van-col> </van-col>
<van-col span="4" v-if="detail.ladderPrice&&detail.biddingType!='自由竞价'" style="text-align: center;line-height: 1rem">
<van-col span="4" v-if="detail.ladderPrice&&detail.biddingType=='阶梯竞价'" style="text-align: center;line-height: 1rem">
<van-button color="#e2e2e2" icon="plus" size="small" @click="add"></van-button> <van-button color="#e2e2e2" icon="plus" size="small" @click="add"></van-button>
</van-col> </van-col>
</van-row> </van-row>


+ 11
- 0
src/views/sunVillage_info/list_signature_pdf.vue Vedi File

@@ -34,11 +34,22 @@
} }
const id = this.$route.query.id; const id = this.$route.query.id;
const baseURL = process.env.VUE_APP_BASE_API; const baseURL = process.env.VUE_APP_BASE_API;
this.$toast.loading({
message: "正在加载文件",
forbidClick: true,
duration: 20000,
});
previewContractFile(id).then(response => { previewContractFile(id).then(response => {
this.url = baseURL + response.msg; this.url = baseURL + response.msg;
let loadingTask = pdf.createLoadingTask(this.url) let loadingTask = pdf.createLoadingTask(this.url)
this.$toast.loading({
message: "正在加载文件",
forbidClick: true,
duration: 20000,
});
loadingTask.promise.then(pdf => { loadingTask.promise.then(pdf => {
this.numPages = pdf.numPages this.numPages = pdf.numPages
this.$toast.clear();
}) })
}); });
}, },


+ 7
- 0
src/views/user/signature/signatureList.vue Vedi File

@@ -388,6 +388,13 @@
align-items: center; align-items: center;
margin-top: 5PX; margin-top: 5PX;
justify-content: space-between; justify-content: space-between;
p:first-child{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
word-break: break-all;
overflow: hidden;
}
.icon_time{ .icon_time{
width: 25px; width: 25px;
height: 25px; height: 25px;


Caricamento…
Annulla
Salva