92d4c6c8 by 杨炀

no message

1 parent d24f7d81
......@@ -8,8 +8,8 @@
</el-button>
</h3>
</div>
<el-card class="mt30 mb60">
<div class="billItem" v-for="b in list" :key="b.id">
<el-card class="mt30" v-for="b in list" :key="b.id">
<div class="billItem">
<!-- parentType -->
<div>
申请日期:
......@@ -21,22 +21,22 @@
<span v-if="b.invoiceForm=='2'">纸质普票</span>
<span v-if="b.invoiceForm=='3'">纸质专票</span>
</div>
<div>¥ <span>{{ b.total }}</span></div>
<div class="text-warning">¥ <span class="price">{{ b.total }}</span></div>
</div>
<div style="margin: 20px 0 0;display: flex;justify-content: space-between;">
<div class="status">
<div class="success" v-if="b.isInvoice == '1'"> 已开票</div>
<div class="warning" v-if="b.isInvoice == '0'">未开票</div>
<div class="success" v-if="b.isInvoice == '3'"> 已寄出</div>
<div class="warning" v-if="b.isInvoice == '2'"> 已取消</div>
<div class="text-success" v-if="b.isInvoice == '1'"> 已开票</div>
<div class="text-warning" v-if="b.isInvoice == '0'">未开票</div>
<div class="text-success" v-if="b.isInvoice == '3'"> 已寄出</div>
<div class="text-warning" v-if="b.isInvoice == '2'"> 已取消</div>
</div>
<div>
<button class="billbtn" v-if="b.isInvoice == '0'" @click.stop="editDetail(b)">
<el-button type="primary" plain round v-if="b.isInvoice == '0'" @click.stop="editDetail(b)">
{{ language == 0 ? '修改发票' : 'Edit' }}
</button>
<button class="billbtn rbtn-m-kx"
</el-button>
<el-button type="primary" plain round
@click.stop="showDetail(b)">{{ language == 0 ? '详情' : 'Detail' }}
</button>
</el-button>
</div>
</div>
......@@ -45,7 +45,7 @@
<el-empty :image="`/img/order_no.png`" :image-size="228" v-if="list?.length == 0"/>
</el-card>
<div class="mb60"></div>
</div>
</div>
......@@ -103,6 +103,10 @@ function getChoosed(list) {
</script>
<style scoped lang="scss">
.billItem{
.price{padding-right: 20px;font-size: 24px;font-weight: bold;font-family: "DIN Alternate"}
}
.leftboderTT {
font-size: 20px;
......
......@@ -84,8 +84,8 @@ export default defineConfig(({ mode, command }) => {
'/dev-api': {
// target: 'http://192.168.1.118:8081/',
// target: 'http://192.168.1.131:8081/',
target: 'https://jijin.wtwuxicenter.com/stage-api',
// target: 'https://wdsfwuxicenter.com/stage-api/',
// target: 'https://jijin.wtwuxicenter.com/stage-api',
target: 'https://wdsfwuxicenter.com/stage-api/',
changeOrigin: true,
rewrite: (p) => p.replace(/^\/dev-api/, '')
},
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!