|
|
@@ -1,7 +1,7 @@
|
|
|
<!-- 导航栏 -->
|
|
|
-<van-nav-bar custom-style="background-color: #fff">
|
|
|
- <van-icon slot="left" name="arrow-left" size="25px" color="#333" bind:click="backToParent"/>
|
|
|
- <text slot="title" style="color: #333;">发票操作</text>
|
|
|
+<van-nav-bar custom-style="background-color: #407DB8">
|
|
|
+ <van-icon slot="left" name="arrow-left" size="25px" color="#fff" bind:click="backToParent"/>
|
|
|
+ <text slot="title" style="color: #fff;">发票操作</text>
|
|
|
</van-nav-bar>
|
|
|
|
|
|
<van-cell-group>
|
|
|
@@ -17,25 +17,25 @@
|
|
|
<van-field model:value="{{ inname }}" adjust-position clearable label="发票抬头" placeholder="抬头名称" />
|
|
|
|
|
|
<!-- 税号 -->
|
|
|
- <van-field wx:if="{{type != 1}}" model:value="{{ inno }}" adjust-position clearable label="税号" placeholder="纳税人识别号"/>
|
|
|
+ <van-field wx:if="{{ type != 1 }}" model:value="{{ inno }}" adjust-position clearable label="税号" placeholder="纳税人识别号"/>
|
|
|
|
|
|
<!-- 开户银行 -->
|
|
|
- <van-field wx:if="{{type != 1}}" model:value="{{ bankname }}" adjust-position clearable label="开户银行" placeholder="选填"/>
|
|
|
+ <van-field wx:if="{{ type != 1 }}" model:value="{{ bankname }}" adjust-position clearable label="开户银行" placeholder="选填"/>
|
|
|
|
|
|
<!-- 银行账号 -->
|
|
|
- <van-field wx:if="{{type != 1}}" model:value="{{ bankno }}" adjust-position type="number" clearable label="银行账号" placeholder="选填"/>
|
|
|
+ <van-field wx:if="{{ type != 1 }}" model:value="{{ bankno }}" adjust-position type="number" clearable label="银行账号" placeholder="选填"/>
|
|
|
|
|
|
<!-- 企业地址 -->
|
|
|
- <van-field wx:if="{{type != 1}}" model:value="{{ inaddress }}" adjust-position clearable label="企业地址" placeholder="选填"/>
|
|
|
+ <van-field wx:if="{{ type != 1 }}" model:value="{{ inaddress }}" adjust-position clearable label="企业地址" placeholder="选填"/>
|
|
|
|
|
|
<!-- 企业电话 -->
|
|
|
- <van-field wx:if="{{type != 1}}" model:value="{{ inmobile }}" type="number" adjust-position clearable autosize label="企业电话" placeholder="选填"/>
|
|
|
+ <van-field wx:if="{{ type != 1 }}" model:value="{{ inmobile }}" type="number" adjust-position clearable autosize label="企业电话" placeholder="选填"/>
|
|
|
|
|
|
</van-cell-group>
|
|
|
|
|
|
<!-- 底部视图 -->
|
|
|
<view class="buttom_view">
|
|
|
- <van-button round id = "confirm" color="linear-gradient(to right, #FF7252, #55A154)" block style="width: 90%; padding-top: 5px; padding-top: 10px;" bind:click="onButtonPressed">确定</van-button>
|
|
|
+ <van-button round id = "confirm" color="#407DB8" block style="width: 90%; padding-top: 5px; padding-top: 10px;" bind:click="onButtonPressed">确定</van-button>
|
|
|
<van-button wx:if="{{autoid != 0}}" id="delete" round color="linear-gradient(to right, #ed213a, #93291e)" block style="width: 90%; padding-top: 5px; padding-top: 10px;" bind:click="onButtonPressed">删除</van-button>
|
|
|
</view>
|
|
|
|