92d4c6c8 by 杨炀

no message

1 parent d24f7d81
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
8 </el-button> 8 </el-button>
9 </h3> 9 </h3>
10 </div> 10 </div>
11 <el-card class="mt30 mb60"> 11 <el-card class="mt30" v-for="b in list" :key="b.id">
12 <div class="billItem" v-for="b in list" :key="b.id"> 12 <div class="billItem">
13 <!-- parentType --> 13 <!-- parentType -->
14 <div> 14 <div>
15 申请日期: 15 申请日期:
...@@ -21,22 +21,22 @@ ...@@ -21,22 +21,22 @@
21 <span v-if="b.invoiceForm=='2'">纸质普票</span> 21 <span v-if="b.invoiceForm=='2'">纸质普票</span>
22 <span v-if="b.invoiceForm=='3'">纸质专票</span> 22 <span v-if="b.invoiceForm=='3'">纸质专票</span>
23 </div> 23 </div>
24 <div>¥ <span>{{ b.total }}</span></div> 24 <div class="text-warning">¥ <span class="price">{{ b.total }}</span></div>
25 </div> 25 </div>
26 <div style="margin: 20px 0 0;display: flex;justify-content: space-between;"> 26 <div style="margin: 20px 0 0;display: flex;justify-content: space-between;">
27 <div class="status"> 27 <div class="status">
28 <div class="success" v-if="b.isInvoice == '1'"> 已开票</div> 28 <div class="text-success" v-if="b.isInvoice == '1'"> 已开票</div>
29 <div class="warning" v-if="b.isInvoice == '0'">未开票</div> 29 <div class="text-warning" v-if="b.isInvoice == '0'">未开票</div>
30 <div class="success" v-if="b.isInvoice == '3'"> 已寄出</div> 30 <div class="text-success" v-if="b.isInvoice == '3'"> 已寄出</div>
31 <div class="warning" v-if="b.isInvoice == '2'"> 已取消</div> 31 <div class="text-warning" v-if="b.isInvoice == '2'"> 已取消</div>
32 </div> 32 </div>
33 <div> 33 <div>
34 <button class="billbtn" v-if="b.isInvoice == '0'" @click.stop="editDetail(b)"> 34 <el-button type="primary" plain round v-if="b.isInvoice == '0'" @click.stop="editDetail(b)">
35 {{ language == 0 ? '修改发票' : 'Edit' }} 35 {{ language == 0 ? '修改发票' : 'Edit' }}
36 </button> 36 </el-button>
37 <button class="billbtn rbtn-m-kx" 37 <el-button type="primary" plain round
38 @click.stop="showDetail(b)">{{ language == 0 ? '详情' : 'Detail' }} 38 @click.stop="showDetail(b)">{{ language == 0 ? '详情' : 'Detail' }}
39 </button> 39 </el-button>
40 40
41 </div> 41 </div>
42 </div> 42 </div>
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
45 <el-empty :image="`/img/order_no.png`" :image-size="228" v-if="list?.length == 0"/> 45 <el-empty :image="`/img/order_no.png`" :image-size="228" v-if="list?.length == 0"/>
46 46
47 </el-card> 47 </el-card>
48 48 <div class="mb60"></div>
49 </div> 49 </div>
50 </div> 50 </div>
51 51
...@@ -103,6 +103,10 @@ function getChoosed(list) { ...@@ -103,6 +103,10 @@ function getChoosed(list) {
103 </script> 103 </script>
104 104
105 <style scoped lang="scss"> 105 <style scoped lang="scss">
106 .billItem{
107 .price{padding-right: 20px;font-size: 24px;font-weight: bold;font-family: "DIN Alternate"}
108 }
109
106 .leftboderTT { 110 .leftboderTT {
107 font-size: 20px; 111 font-size: 20px;
108 112
......
...@@ -84,8 +84,8 @@ export default defineConfig(({ mode, command }) => { ...@@ -84,8 +84,8 @@ export default defineConfig(({ mode, command }) => {
84 '/dev-api': { 84 '/dev-api': {
85 // target: 'http://192.168.1.118:8081/', 85 // target: 'http://192.168.1.118:8081/',
86 // target: 'http://192.168.1.131:8081/', 86 // target: 'http://192.168.1.131:8081/',
87 target: 'https://jijin.wtwuxicenter.com/stage-api', 87 // target: 'https://jijin.wtwuxicenter.com/stage-api',
88 // target: 'https://wdsfwuxicenter.com/stage-api/', 88 target: 'https://wdsfwuxicenter.com/stage-api/',
89 changeOrigin: true, 89 changeOrigin: true,
90 rewrite: (p) => p.replace(/^\/dev-api/, '') 90 rewrite: (p) => p.replace(/^\/dev-api/, '')
91 }, 91 },
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!