|
|
@@ -16,11 +16,11 @@
|
|
|
<!--<el-form-item label="报单中心级别" v-show="userInfo.DEC_ROLE_NAME!=='无'">-->
|
|
|
<!--<el-input :value="userInfo.DEC_ROLE_NAME" :disabled="true"></el-input>-->
|
|
|
<!--</el-form-item>-->
|
|
|
-
|
|
|
+
|
|
|
<el-form-item :label="item.label" v-show="userInfo.REAL_NAME!==null" v-for="(item,key) in type" :key="key">
|
|
|
<el-input :value="userInfo[item.name.toUpperCase()]" :disabled="true"></el-input>
|
|
|
</el-form-item>
|
|
|
-
|
|
|
+
|
|
|
<el-form-item :label="$t('financial.accountType')"><!--账户类型-->
|
|
|
<el-select v-model="form.type" :placeholder="$t('financial.pleaseSelectAccountType')"><!--请选择账户类型-->
|
|
|
<el-option v-for="(item,key) in type" :label="item.label" :value="key" :key="key"></el-option>
|
|
|
@@ -38,10 +38,11 @@
|
|
|
<el-form-item :label="$t('common.note')"><!--备注-->
|
|
|
<el-input v-model="form.remark"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item :label="$t('financial.forgeDisplayRemark')"><!--备注前台显示-->
|
|
|
+ <!--备注前台显示-->
|
|
|
+ <!-- <el-form-item :label="$t('financial.forgeDisplayRemark')">
|
|
|
<el-switch v-model="form.isShow" active-value="1" inactive-value="0">
|
|
|
</el-switch>
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item> -->
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" :loading="submitButtonStat" :disabled="getCodeStat" @click="onSubmit">{{ $t('common.confirm') }}<!-- 提交 --></el-button>
|
|
|
</el-form-item>
|
|
|
@@ -74,14 +75,14 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
-
|
|
|
+
|
|
|
<script>
|
|
|
import tool from '@/utils/tool'
|
|
|
import baseInfo from '@/utils/baseInfo'
|
|
|
import { getChangeBalanceType, multPoint, changeBalance, userFullInfo } from '@/api/finance'
|
|
|
// import {CDN_BASE_URL} from '@/utils/config'
|
|
|
import permission from '@/utils/permission'
|
|
|
-
|
|
|
+
|
|
|
export default {
|
|
|
name: 'finance_change-balance-opt',
|
|
|
mounted() {
|
|
|
@@ -194,7 +195,7 @@
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
-
|
|
|
+
|
|
|
<style scoped>
|
|
|
@media (min-width: 761px) {
|
|
|
/deep/ .el-input__inner {
|
|
|
@@ -211,7 +212,7 @@
|
|
|
/deep/ .el-form-item__label {
|
|
|
width:150px !important;
|
|
|
}
|
|
|
- /deep/ .el-input__inner {
|
|
|
+ /deep/ .el-input__inner {
|
|
|
width: 150px;
|
|
|
}
|
|
|
/* .el-input {
|
|
|
@@ -221,4 +222,3 @@
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
-
|