li.shaoyi há 2 anos atrás
pai
commit
16fbc7af76

+ 2 - 2
oem/gstj/manifest.json

@@ -5,9 +5,9 @@
     "name" : "甘肃碳交",
     /*应用名称,程序桌面图标名称*/
     "version" : {
-        "name" : "1.0.6",
+        "name" : "1.0.7",
         /*应用版本名称*/
-        "code" : 100006
+        "code" : 100007
     },
     "description" : "",
     /*应用描述信息*/

+ 2 - 2
oem/qxst/manifest.json

@@ -5,9 +5,9 @@
     "name" : "贵茶数字化",
     /*应用名称,程序桌面图标名称*/
     "version" : {
-        "name" : "1.0.6",
+        "name" : "1.0.8",
         /*应用版本名称*/
-        "code" : 100006
+        "code" : 100008
     },
     "description" : "",
     /*应用描述信息*/

+ 8 - 3
src/packages/mobile/views/bank/sign/Index.vue

@@ -7,7 +7,10 @@
             <CellGroup>
                 <Cell title="开户银行" :value="bankInfo.bankname" />
                 <Cell title="银行卡号" :value="bankInfo.bankaccountno" />
-                <Cell title="姓名" :value="bankInfo.bankaccountname" />
+                <template v-if="bankInfo.signstatus === SignStatus.Signed">
+                    <Cell title="姓名" :value="bankInfo.bankaccountname" />
+                    <Cell title="手机号码" :value="bankInfo.mobilephone" />
+                </template>
                 <Cell title="支行名称" v-if="bankInfo.branchbankname != ''" :value="bankInfo.branchbankname" />
                 <Cell title="状态" :value="getSignStatusName(bankInfo.signstatus)" />
             </CellGroup>
@@ -18,10 +21,12 @@
         </div>
         <template #footer>
             <div class="g-form__footer inset" v-if="bankInfo">
+                <Button type="danger" round block @click="showComponent(true)"
+                    v-if="[SignStatus.Unsigned, SignStatus.Refuse].includes(bankInfo.signstatus)">重新签约</Button>
                 <Button type="warning" round block @click="formSubmit"
                     v-if="bankInfo.signstatus === SignStatus.Signed && cusBank?.canrelease === 1">解约</Button>
-                <Button type="danger" round block @click="showComponent(true)" v-if="[SignStatus.Unsigned, SignStatus.Refuse, SignStatus.Signed].includes(bankInfo.signstatus) &&
-                    cusBank?.canmodifysigninfo === 1">修改</Button>
+                <Button type="danger" round block @click="showComponent(true)"
+                    v-if="bankInfo.signstatus === SignStatus.Signed && cusBank?.canmodifysigninfo === 1">修改</Button>
             </div>
         </template>
         <component ref="componentRef" v-bind="{ isedit }" :is="componentMap.get(componentId)" @closed="closeComponent"

+ 1 - 2
src/packages/pc/views/account/sign/index.vue

@@ -24,8 +24,7 @@
             <div class="buttonbar">
                 <el-button v-if="row.signstatus === SignStatus.Signed && cusBank?.canrelease === 1" type="danger" size="small"
                     @click="openComponent('cancel')">解约</el-button>
-                <el-button v-if="[SignStatus.Unsigned, SignStatus.Refuse, SignStatus.Signed].includes(row.signstatus) && 
-                                 cusBank?.canmodifysigninfo === 1"
+                <el-button v-if="[SignStatus.Unsigned, SignStatus.Refuse].includes(row.signstatus) || (row.signstatus === SignStatus.Signed && cusBank?.canmodifysigninfo === 1)"
                     type="primary" size="small" @click="openComponent('sign')">修改</el-button>
             </div>
         </template>