doctor-admin-components 1.0.13-beta.43 → 1.0.13-beta.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -253,6 +253,7 @@
|
|
|
253
253
|
"draftBl_buyer_confirm_true": "Draft BL confirmed",
|
|
254
254
|
"draftBl_buyer_confirm_false": "Draft BL to be confirmed",
|
|
255
255
|
"balancePartPaid_true": "Final Payment partially paid",
|
|
256
|
+
"Balance_Invoice_to_be_paid":"Balance Invoice to be paid",
|
|
256
257
|
"balancePartPaid_false": "Balance Invoice to be paid",
|
|
257
258
|
"balancePaid_true": "Final Payment paid",
|
|
258
259
|
"balancePaid_false": "Balance Invoice to be paid",
|
|
@@ -255,6 +255,7 @@
|
|
|
255
255
|
"draftBl_buyer_confirm_true": "草稿提单已确认",
|
|
256
256
|
"draftBl_buyer_confirm_false": "草稿提单待买家确认",
|
|
257
257
|
"balancePartPaid_true": "尾款已部分支付",
|
|
258
|
+
"Balance_Invoice_to_be_paid":"尾款待支付",
|
|
258
259
|
"balancePartPaid_false": "尾款待买家支付",
|
|
259
260
|
"balancePaid_true": "尾款已支付",
|
|
260
261
|
"balancePaid_false": "尾款待买家支付",
|
|
@@ -1949,10 +1949,10 @@ export default {
|
|
|
1949
1949
|
} else {
|
|
1950
1950
|
if(shipmentItem.balanceInvoicePartiallyPaidFlag) {
|
|
1951
1951
|
// 尾款已部分支付(英文:Final Payment partially paid)
|
|
1952
|
-
shipTextArr.push(this.$t('contractDetail.
|
|
1952
|
+
shipTextArr.push(this.$t('contractDetail.Balance_Invoice_to_be_paid'))
|
|
1953
1953
|
} else {
|
|
1954
1954
|
// 尾款待买家支付(英文:Balance Invoice to be paid)
|
|
1955
|
-
shipTextArr.push(this.$t('contractDetail.
|
|
1955
|
+
shipTextArr.push(this.$t('contractDetail.Balance_Invoice_to_be_paid'))
|
|
1956
1956
|
}
|
|
1957
1957
|
}
|
|
1958
1958
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: zhangpengwei 15038779532@163.com
|
|
3
3
|
* @Date: 2023-07-20 17:13:54
|
|
4
4
|
* @LastEditors: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
|
|
5
|
-
* @LastEditTime: 2024-04-10
|
|
5
|
+
* @LastEditTime: 2024-04-10 20:22:55
|
|
6
6
|
* @FilePath: /recycle-vue-ui再生博士后台管理/src/views/biz/contractTracing/contractTracingDetail.vue
|
|
7
7
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
8
8
|
-->
|
|
@@ -154,8 +154,8 @@ export default {
|
|
|
154
154
|
const contractId = this.$route.params && this.$route.params.contractId;
|
|
155
155
|
this.getContract(contractId);
|
|
156
156
|
const activeName = this.$route.query && this.$route.query.activeName;
|
|
157
|
-
|
|
158
|
-
this.activeName = 'fourth'
|
|
157
|
+
this.activeName = activeName || 'first';
|
|
158
|
+
// this.activeName = 'fourth'
|
|
159
159
|
localStorage.setItem('contractDetail', location.href);
|
|
160
160
|
location.href;
|
|
161
161
|
},
|